From b997687e8b4d4f9a0161762650a29efb9c8e1f77 Mon Sep 17 00:00:00 2001 From: unschlagbar <153451111+unschlagbar@users.noreply.github.com> Date: Sat, 26 Apr 2025 22:27:37 +0200 Subject: [PATCH] implement Door placement & pumpkin_data changes (#713) * fix: view distance goes no above 16 * fix: cargo fmt * removed the floating point conversation * fixed spelling * renamed the test for the capacity estimation * edit: replaced division with bitshifting * added more () * extendet test and fixed missing chunks when the view distance is very low * added commentar * fixed door placement & fence connection * fix linting * fmt * fix clippy * removed useless borrow * fix all clippy warnings * bro i changed so much * added const to fn * Update block_state.rs * added bunch of things * fix * lol * fmt * fix: player is able to place where it stands * fix: spelling * upd2 * upd 4 * remove Option types from blockstate * resolve conflicts * Update player.rs * fix * fmt * remove uninit * fix * resolved conflicts * fmt * remove dupe code --------- Co-authored-by: unschlagbar --- assets/blocks.json | 254808 ++++----------- assets/properties.json | 240 +- pumpkin-data/build/block.rs | 401 +- pumpkin-data/src/block_state.rs | 63 + pumpkin-data/src/blocks.rs | 40 + pumpkin-data/src/collision_shape.rs | 34 + pumpkin-data/src/lib.rs | 13 +- pumpkin-inventory/src/open_container.rs | 2 +- pumpkin-macros/src/block_state.rs | 2 +- .../src/client/config/update_tags.rs | 2 +- pumpkin-util/src/math/mod.rs | 1 - pumpkin-util/src/math/voxel_shape.rs | 9 - pumpkin-world/src/block/entities/mod.rs | 2 +- pumpkin-world/src/block/mod.rs | 4 +- pumpkin-world/src/block/state.rs | 12 +- pumpkin-world/src/chunk/format/anvil.rs | 2 +- pumpkin-world/src/chunk/format/mod.rs | 2 +- pumpkin-world/src/chunk/palette.rs | 9 +- .../src/generation/aquifer_sampler.rs | 2 +- pumpkin-world/src/generation/proto_chunk.rs | 11 +- .../src/generation/surface/terrain.rs | 4 +- pumpkin/src/block/blocks/cactus.rs | 13 +- pumpkin/src/block/blocks/chest.rs | 2 +- pumpkin/src/block/blocks/crafting_table.rs | 2 +- pumpkin/src/block/blocks/dirt_path.rs | 4 +- pumpkin/src/block/blocks/doors.rs | 253 +- pumpkin/src/block/blocks/farmland.rs | 4 +- pumpkin/src/block/blocks/fence_gates.rs | 8 +- pumpkin/src/block/blocks/fences.rs | 29 +- pumpkin/src/block/blocks/furnace.rs | 2 +- pumpkin/src/block/blocks/jukebox.rs | 15 +- pumpkin/src/block/blocks/logs.rs | 6 +- pumpkin/src/block/blocks/mod.rs | 2 +- pumpkin/src/block/blocks/redstone/buttons.rs | 26 +- pumpkin/src/block/blocks/redstone/lever.rs | 15 +- pumpkin/src/block/blocks/redstone/mod.rs | 8 +- pumpkin/src/block/blocks/redstone/observer.rs | 17 +- pumpkin/src/block/blocks/redstone/piston.rs | 8 +- .../blocks/redstone/rails/activator_rail.rs | 2 +- .../src/block/blocks/redstone/rails/common.rs | 7 +- .../blocks/redstone/rails/detector_rail.rs | 2 +- .../src/block/blocks/redstone/rails/mod.rs | 30 +- .../blocks/redstone/rails/powered_rail.rs | 2 +- .../src/block/blocks/redstone/rails/rail.rs | 6 +- .../block/blocks/redstone/redstone_block.rs | 2 +- .../block/blocks/redstone/redstone_lamp.rs | 14 +- .../block/blocks/redstone/redstone_torch.rs | 35 +- .../block/blocks/redstone/redstone_wire.rs | 16 +- pumpkin/src/block/blocks/redstone/repeater.rs | 47 +- .../src/block/blocks/redstone/target_block.rs | 2 +- pumpkin/src/block/blocks/redstone/turbo.rs | 12 +- pumpkin/src/block/blocks/signs.rs | 6 +- pumpkin/src/block/blocks/sugar_cane.rs | 9 +- pumpkin/src/block/blocks/tnt.rs | 2 +- pumpkin/src/block/blocks/torches.rs | 6 +- pumpkin/src/block/fluids/flowing_fluid.rs | 2 +- pumpkin/src/block/mod.rs | 2 +- pumpkin/src/block/pumpkin_block.rs | 2 +- pumpkin/src/block/registry.rs | 2 +- pumpkin/src/command/args/block.rs | 2 +- pumpkin/src/command/commands/fill.rs | 2 +- pumpkin/src/command/commands/setblock.rs | 2 +- pumpkin/src/entity/item.rs | 40 +- pumpkin/src/entity/living.rs | 35 +- pumpkin/src/entity/mod.rs | 53 +- pumpkin/src/entity/player.rs | 175 +- pumpkin/src/entity/tnt.rs | 14 +- pumpkin/src/item/items/hoe.rs | 8 +- pumpkin/src/item/pumpkin_item.rs | 2 +- pumpkin/src/item/registry.rs | 2 +- pumpkin/src/net/packet/play.rs | 23 +- .../plugin/api/events/block/block_break.rs | 2 +- .../src/plugin/api/events/block/block_burn.rs | 2 +- .../api/events/block/block_can_build.rs | 2 +- .../plugin/api/events/block/block_place.rs | 2 +- pumpkin/src/plugin/api/events/block/mod.rs | 2 +- pumpkin/src/server/mod.rs | 2 +- pumpkin/src/world/explosion.rs | 4 +- pumpkin/src/world/mod.rs | 18 +- 79 files changed, 58648 insertions(+), 198029 deletions(-) create mode 100644 pumpkin-data/src/block_state.rs create mode 100644 pumpkin-data/src/blocks.rs create mode 100644 pumpkin-data/src/collision_shape.rs delete mode 100644 pumpkin-util/src/math/voxel_shape.rs diff --git a/assets/blocks.json b/assets/blocks.json index 48d89852c..43ded4ddd 100644 --- a/assets/blocks.json +++ b/assets/blocks.json @@ -4194,16 +4194,11 @@ "states": [ { "id": 0, - "air": true, - "is_solid": false, + "state_flags": 17, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -4270,17 +4265,12 @@ "states": [ { "id": 1, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4323,17 +4313,12 @@ "states": [ { "id": 2, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4376,17 +4361,12 @@ "states": [ { "id": 3, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4429,17 +4409,12 @@ "states": [ { "id": 4, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4482,17 +4457,12 @@ "states": [ { "id": 5, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4535,17 +4505,12 @@ "states": [ { "id": 6, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4588,17 +4553,12 @@ "states": [ { "id": 7, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4663,40 +4623,30 @@ ] }, "properties": [ - -136535691 + 56888196 ], "default_state_id": 9, "states": [ { "id": 8, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 9, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4739,17 +4689,12 @@ "states": [ { "id": 10, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4792,17 +4737,12 @@ "states": [ { "id": 11, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4867,40 +4807,30 @@ ] }, "properties": [ - -136535691 + 56888196 ], "default_state_id": 13, "states": [ { "id": 12, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4943,17 +4873,12 @@ "states": [ { "id": 14, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -4996,17 +4921,12 @@ "states": [ { "id": 15, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5049,17 +4969,12 @@ "states": [ { "id": 16, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5102,17 +5017,12 @@ "states": [ { "id": 17, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5155,17 +5065,12 @@ "states": [ { "id": 18, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5208,17 +5113,12 @@ "states": [ { "id": 19, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5261,17 +5161,12 @@ "states": [ { "id": 20, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5314,17 +5209,12 @@ "states": [ { "id": 21, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5363,57 +5253,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 23, "states": [ { "id": 22, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 23, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5456,17 +5331,12 @@ "states": [ { "id": 25, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5509,17 +5379,12 @@ "states": [ { "id": 26, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5562,17 +5427,12 @@ "states": [ { "id": 27, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5615,17 +5475,12 @@ "states": [ { "id": 28, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -5664,36 +5519,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 29, "states": [ { "id": 29, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 30, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -5730,36 +5575,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 31, "states": [ { "id": 31, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 32, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -5796,36 +5631,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 33, "states": [ { "id": 33, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 34, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -5862,36 +5687,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 35, "states": [ { "id": 35, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 36, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -5928,36 +5743,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 37, "states": [ { "id": 37, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 38, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -5994,36 +5799,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 39, "states": [ { "id": 39, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 40, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -6060,36 +5855,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 41, "states": [ { "id": 41, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 42, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -6126,36 +5911,26 @@ ] }, "properties": [ - -538778284 + -1183626453 ], "default_state_id": 43, "states": [ { "id": 43, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 44, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -6201,571 +5976,371 @@ ] }, "properties": [ - 385368210, - 446762063, - -538778284, - 795783032 + -259479959, + 640185950, + -1183626453, + 989206919 ], "default_state_id": 50, "states": [ { "id": 45, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 46, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 47, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 48, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 49, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 50, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 51, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 52, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 53, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 54, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 55, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 56, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 57, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 58, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 59, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 60, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 61, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 62, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 63, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 64, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 65, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 66, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 67, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 68, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 69, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 70, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 71, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 72, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 73, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 74, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 75, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 76, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 77, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 78, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 79, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 80, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 81, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 82, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 83, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 84, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -6785,17 +6360,12 @@ "states": [ { "id": 85, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -6813,232 +6383,152 @@ "blast_resistance": 100.0, "item_id": 0, "properties": [ - 144271317 + -500576852 ], "default_state_id": 86, "states": [ { "id": 86, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 87, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 88, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 89, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 90, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 91, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 92, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 93, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 94, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 95, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 96, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 97, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 98, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 99, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 100, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 101, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -7054,232 +6544,152 @@ "blast_resistance": 100.0, "item_id": 0, "properties": [ - 144271317 + -500576852 ], "default_state_id": 102, "states": [ { "id": 102, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 103, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 104, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 105, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 106, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 107, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 108, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 109, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 110, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 111, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 112, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 113, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 114, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 115, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 116, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 117, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 100.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -7320,17 +6730,12 @@ "states": [ { "id": 118, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -7352,23 +6757,18 @@ "random_sequence": "minecraft:blocks/suspicious_sand" }, "properties": [ - -1924900958 + 1725218169 ], "default_state_id": 119, "states": [ { "id": 119, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7376,17 +6776,12 @@ }, { "id": 120, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7394,17 +6789,12 @@ }, { "id": 121, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7412,17 +6802,12 @@ }, { "id": 122, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7466,17 +6851,12 @@ "states": [ { "id": 123, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -7566,17 +6946,12 @@ "states": [ { "id": 124, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -7598,23 +6973,18 @@ "random_sequence": "minecraft:blocks/suspicious_gravel" }, "properties": [ - -1924900958 + 1725218169 ], "default_state_id": 125, "states": [ { "id": 125, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7622,17 +6992,12 @@ }, { "id": 126, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7640,17 +7005,12 @@ }, { "id": 127, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7658,17 +7018,12 @@ }, { "id": 128, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -7747,17 +7102,12 @@ "states": [ { "id": 129, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -7835,17 +7185,12 @@ "states": [ { "id": 130, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -7923,17 +7268,12 @@ "states": [ { "id": 131, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8011,17 +7351,12 @@ "states": [ { "id": 132, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8103,17 +7438,12 @@ "states": [ { "id": 133, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8195,17 +7525,12 @@ "states": [ { "id": 134, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8296,17 +7621,12 @@ "states": [ { "id": 135, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8345,57 +7665,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 137, "states": [ { "id": 136, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 137, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 138, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8434,57 +7739,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 140, "states": [ { "id": 139, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 140, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 141, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8523,57 +7813,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 143, "states": [ { "id": 142, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 143, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 144, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8612,57 +7887,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 146, "states": [ { "id": 145, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 146, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 147, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8701,57 +7961,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 149, "states": [ { "id": 148, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 149, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 150, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8790,57 +8035,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 152, "states": [ { "id": 151, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 152, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 153, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8879,57 +8109,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 155, "states": [ { "id": 154, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 155, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 156, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -8968,57 +8183,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 158, "states": [ { "id": 157, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 158, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 159, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9057,57 +8257,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 161, "states": [ { "id": 160, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 161, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 162, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9146,38 +8331,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 164, "states": [ { "id": 163, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 164, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9216,57 +8391,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 166, "states": [ { "id": 165, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 166, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 167, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9305,57 +8465,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 169, "states": [ { "id": 168, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 169, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 170, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9394,57 +8539,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 172, "states": [ { "id": 171, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 172, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 173, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9483,57 +8613,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 175, "states": [ { "id": 174, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 175, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 176, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9572,57 +8687,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 178, "states": [ { "id": 177, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 178, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 179, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9661,57 +8761,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 181, "states": [ { "id": 180, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 181, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 182, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9750,57 +8835,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 184, "states": [ { "id": 183, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 184, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 185, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9839,57 +8909,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 187, "states": [ { "id": 186, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 187, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 188, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -9928,57 +8983,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 190, "states": [ { "id": 189, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 190, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 191, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10017,57 +9057,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 193, "states": [ { "id": 192, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 193, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 194, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10106,57 +9131,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 196, "states": [ { "id": 195, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 196, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 197, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10195,57 +9205,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 199, "states": [ { "id": 198, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 199, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 200, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10284,57 +9279,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 202, "states": [ { "id": 201, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 202, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 203, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10373,57 +9353,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 205, "states": [ { "id": 204, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 205, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 206, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10462,57 +9427,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 208, "states": [ { "id": 207, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 208, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 209, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10551,57 +9501,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 211, "states": [ { "id": 210, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 211, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 212, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10640,57 +9575,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 214, "states": [ { "id": 213, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 214, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 215, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10729,57 +9649,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 217, "states": [ { "id": 216, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 217, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 218, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10818,57 +9723,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 220, "states": [ { "id": 219, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 220, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 221, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10907,57 +9797,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 223, "states": [ { "id": 222, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 223, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 224, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -10996,57 +9871,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 226, "states": [ { "id": 225, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 226, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 227, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11085,57 +9945,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 229, "states": [ { "id": 228, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 229, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 230, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11174,57 +10019,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 232, "states": [ { "id": 231, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 232, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 233, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11263,57 +10093,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 235, "states": [ { "id": 234, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 235, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 236, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11352,57 +10167,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 238, "states": [ { "id": 237, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 238, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 239, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11441,57 +10241,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 241, "states": [ { "id": 240, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 241, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 242, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11530,57 +10315,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 244, "states": [ { "id": 243, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 244, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 245, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11619,57 +10389,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 247, "states": [ { "id": 246, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 247, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 248, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11708,57 +10463,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 250, "states": [ { "id": 249, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 250, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 251, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -11969,456 +10709,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 279, "states": [ { "id": 252, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 253, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 254, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 255, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 256, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 257, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 258, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 259, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 260, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 261, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 262, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 263, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 264, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 265, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 266, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 267, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 268, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 269, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 270, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 271, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 272, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 273, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 274, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 275, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 276, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 277, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 278, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 279, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -12572,456 +11172,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 307, "states": [ { "id": 280, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 281, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 282, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 283, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 284, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 285, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 286, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 287, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 288, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 289, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 290, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 291, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 292, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 293, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 294, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 295, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 296, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 297, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 298, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 299, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 300, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 301, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 302, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 303, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 304, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 305, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 306, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 307, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -13175,456 +11635,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 335, "states": [ { "id": 308, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 309, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 310, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 311, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 312, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 313, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 314, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 315, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 316, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 317, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 318, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 319, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 320, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 321, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 322, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 323, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 324, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 325, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 326, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 327, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 328, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 329, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 330, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 331, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 332, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 333, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 334, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 335, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -13779,456 +12099,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 363, "states": [ { "id": 336, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 337, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 338, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 339, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 340, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 341, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 342, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 343, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 344, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 345, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 346, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 347, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 348, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 349, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 350, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 351, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 352, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 353, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 354, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 355, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 356, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 357, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 358, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 359, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 360, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 361, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 362, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 363, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -14382,456 +12562,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 391, "states": [ { "id": 364, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 365, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 366, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 367, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 368, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 369, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 370, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 371, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 372, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 373, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 374, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 375, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 376, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 377, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 378, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 379, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 380, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 381, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 382, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 383, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 384, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 385, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 386, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 387, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 388, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 389, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 390, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 391, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -14985,456 +13025,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 419, "states": [ { "id": 392, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 393, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 394, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 395, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 396, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 397, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 398, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 399, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 400, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 401, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 402, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 403, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 404, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 405, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 406, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 407, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 408, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 409, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 410, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 411, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 412, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 413, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 414, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 415, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 416, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 417, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 418, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 419, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -15645,456 +13545,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 447, "states": [ { "id": 420, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 421, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 422, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 423, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 424, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 425, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 426, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 427, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 428, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 429, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 430, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 431, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 432, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 433, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 434, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 435, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 436, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 437, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 438, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 439, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 440, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 441, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 442, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 443, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 444, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 445, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 446, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 447, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -16248,456 +14008,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 475, "states": [ { "id": 448, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 449, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 450, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 451, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 452, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 453, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 454, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 455, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 456, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 457, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 458, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 459, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 460, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 461, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 462, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 463, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 464, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 465, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 466, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 467, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 468, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 469, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 470, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 471, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 472, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 473, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 474, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 475, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -16795,456 +14415,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 503, "states": [ { "id": 476, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 477, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 478, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 479, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 480, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 481, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 482, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 483, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 484, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 485, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 486, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 487, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 488, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 489, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 490, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 491, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 492, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 493, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 494, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 495, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 496, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 497, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 498, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 499, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 500, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 501, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 502, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 503, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -17398,456 +14878,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 531, "states": [ { "id": 504, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 505, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 506, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 507, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 508, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 509, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 510, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 511, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 512, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 513, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 514, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 515, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 516, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 517, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 518, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 519, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 520, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 521, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 522, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 523, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 524, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 525, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 526, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 527, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 528, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 529, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 530, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 531, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18001,456 +15341,316 @@ ] }, "properties": [ - -898466722, - 266334390, - 795783032 + -1543314891, + 459758277, + 989206919 ], "default_state_id": 559, "states": [ { "id": 532, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 533, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 534, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 535, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 536, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 537, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 538, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 539, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 540, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 541, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 542, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 543, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 544, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 545, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 546, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 547, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 548, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 549, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 550, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 551, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 552, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 553, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 554, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 555, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 556, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 557, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 558, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 559, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18493,17 +15693,12 @@ "states": [ { "id": 560, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18546,17 +15741,12 @@ "states": [ { "id": 561, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18611,16 +15801,11 @@ "states": [ { "id": 562, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18711,17 +15896,12 @@ "states": [ { "id": 563, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18812,17 +15992,12 @@ "states": [ { "id": 564, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18865,17 +16040,12 @@ "states": [ { "id": 565, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -18923,24 +16093,19 @@ ] }, "properties": [ - 1627058566, - -894880138 + 2060047744, + -701456251 ], "default_state_id": 567, "states": [ { "id": 566, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -18948,17 +16113,12 @@ }, { "id": 567, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -18966,17 +16126,12 @@ }, { "id": 568, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -18984,17 +16139,12 @@ }, { "id": 569, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19002,17 +16152,12 @@ }, { "id": 570, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19020,17 +16165,12 @@ }, { "id": 571, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19038,17 +16178,12 @@ }, { "id": 572, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19056,17 +16191,12 @@ }, { "id": 573, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19074,17 +16204,12 @@ }, { "id": 574, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19092,17 +16217,12 @@ }, { "id": 575, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19110,17 +16230,12 @@ }, { "id": 576, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19128,17 +16243,12 @@ }, { "id": 577, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -19182,17 +16292,12 @@ "states": [ { "id": 578, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -19235,17 +16340,12 @@ "states": [ { "id": 579, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -19288,17 +16388,12 @@ "states": [ { "id": 580, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -19337,19558 +16432,13808 @@ ] }, "properties": [ - 1720112440, - -517152823, - -634074493 + -988386285, + -1162000992, + -440650606 ], "default_state_id": 582, "states": [ { "id": 581, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 582, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 583, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 584, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 585, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 586, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 587, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 588, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 589, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 590, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 591, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 592, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 593, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 594, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 595, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 596, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 597, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 598, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 599, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 600, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 601, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 602, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 603, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 604, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 605, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 606, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 607, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 608, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 609, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 610, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 611, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 612, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 613, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 614, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 615, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 616, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 617, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 618, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 619, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 620, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 621, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 622, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 623, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 624, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 625, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 626, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 627, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 628, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 629, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 630, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 631, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 632, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 633, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 634, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 635, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 636, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 637, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 638, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 639, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 640, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 641, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 642, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 643, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 644, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 645, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 646, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 647, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 648, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 649, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 650, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 651, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 652, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 653, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 654, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 655, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 656, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 657, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 658, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 659, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 660, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 661, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 662, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 663, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 664, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 665, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 666, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 667, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 668, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 669, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 670, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 671, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 672, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 673, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 674, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 675, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 676, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 677, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 678, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 679, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 680, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 681, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 682, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 683, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 684, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 685, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 686, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 687, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 688, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 689, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 690, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 691, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 692, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 693, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 694, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 695, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 696, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 697, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 698, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 699, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 700, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 701, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 702, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 703, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 704, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 705, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 706, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 707, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 708, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 709, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 710, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 711, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 712, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 713, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 714, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 715, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 716, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 717, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 718, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 719, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 720, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 721, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 722, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 723, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 724, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 725, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 726, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 727, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 728, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 729, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 730, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 731, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 732, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 733, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 734, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 735, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 736, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 737, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 738, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 739, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 740, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 741, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 742, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 743, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 744, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 745, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 746, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 747, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 748, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 749, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 750, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 751, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 752, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 753, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 754, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 755, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 756, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 757, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 758, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 759, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 760, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 761, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 762, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 763, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 764, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 765, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 766, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 767, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 768, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 769, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 770, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 771, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 772, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 773, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 774, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 775, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 776, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 777, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 778, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 779, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 780, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 781, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 782, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 783, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 784, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 785, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 786, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 787, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 788, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 789, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 790, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 791, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 792, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 793, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 794, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 795, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 796, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 797, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 798, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 799, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 800, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 801, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 802, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 803, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 804, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 805, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 806, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 807, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 808, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 809, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 810, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 811, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 812, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 813, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 814, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 815, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 816, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 817, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 818, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 819, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 820, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 821, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 822, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 823, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 824, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 825, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 826, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 827, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 828, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 829, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 830, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 831, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 832, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 833, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 834, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 835, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 836, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 837, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 838, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 839, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 840, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 841, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 842, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 843, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 844, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 845, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 846, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 847, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 848, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 849, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 850, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 851, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 852, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 853, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 854, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 855, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 856, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 857, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 858, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 859, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 860, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 861, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 862, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 863, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 864, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 865, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 866, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 867, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 868, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 869, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 870, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 871, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 872, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 873, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 874, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 875, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 876, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 877, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 878, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 879, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 880, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 881, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 882, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 883, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 884, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 885, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 886, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 887, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 888, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 889, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 890, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 891, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 892, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 893, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 894, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 895, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 896, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 897, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 898, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 899, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 900, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 901, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 902, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 903, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 904, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 905, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 906, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 907, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 908, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 909, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 910, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 911, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 912, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 913, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 914, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 915, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 916, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 917, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 918, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 919, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 920, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 921, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 922, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 923, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 924, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 925, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 926, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 927, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 928, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 929, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 930, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 931, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 932, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 933, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 934, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 935, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 936, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 937, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 938, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 939, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 940, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 941, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 942, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 943, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 944, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 945, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 946, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 947, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 948, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 949, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 950, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 951, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 952, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 953, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 954, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 955, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 956, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 957, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 958, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 959, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 960, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 961, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 962, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 963, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 964, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 965, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 966, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 967, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 968, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 969, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 970, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 971, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 972, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 973, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 974, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 975, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 976, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 977, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 978, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 979, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 980, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 981, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 982, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 983, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 984, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 985, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 986, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 987, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 988, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 989, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 990, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 991, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 992, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 993, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 994, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 995, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 996, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 997, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 998, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 999, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1000, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1001, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1002, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1003, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1004, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1005, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1006, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1007, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1008, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1009, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1010, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1011, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1012, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1013, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1014, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1015, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1016, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1017, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1018, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1019, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1020, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1021, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1022, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1023, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1024, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1025, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1026, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1027, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1028, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1029, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1030, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1031, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1032, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1033, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1034, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1035, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1036, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1037, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1038, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1039, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1040, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1041, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1042, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1043, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1044, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1045, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1046, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1047, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1048, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1049, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1050, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1051, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1052, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1053, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1054, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1055, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1056, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1057, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1058, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1059, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1060, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1061, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1062, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1063, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1064, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1065, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1066, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1067, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1068, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1069, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1070, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1071, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1072, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1073, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1074, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1075, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1076, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1077, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1078, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1079, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1080, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1081, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1082, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1083, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1084, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1085, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1086, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1087, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1088, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1089, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1090, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1091, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1092, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1093, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1094, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1095, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1096, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1097, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1098, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1099, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1100, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1101, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1102, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1103, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1104, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1105, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1106, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1107, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1108, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1109, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1110, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1111, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1112, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1113, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1114, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1115, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1116, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1117, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1118, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1119, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1120, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1121, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1122, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1123, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1124, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1125, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1126, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1127, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1128, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1129, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1130, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1131, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1132, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1133, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1134, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1135, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1136, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1137, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1138, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1139, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1140, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1141, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1142, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1143, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1144, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1145, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1146, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1147, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1148, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1149, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1150, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1151, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1152, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1153, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1154, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1155, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1156, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1157, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1158, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1159, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1160, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1161, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1162, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1163, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1164, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1165, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1166, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1167, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1168, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1169, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1170, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1171, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1172, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1173, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1174, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1175, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1176, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1177, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1178, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1179, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1180, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1181, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1182, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1183, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1184, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1185, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1186, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1187, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1188, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1189, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1190, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1191, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1192, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1193, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1194, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1195, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1196, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1197, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1198, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1199, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1200, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1201, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1202, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1203, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1204, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1205, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1206, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1207, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1208, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1209, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1210, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1211, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1212, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1213, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1214, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1215, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1216, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1217, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1218, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1219, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1220, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1221, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1222, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1223, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1224, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1225, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1226, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1227, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1228, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1229, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1230, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1231, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1232, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1233, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1234, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1235, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1236, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1237, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1238, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1239, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1240, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1241, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1242, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1243, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1244, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1245, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1246, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1247, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1248, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1249, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1250, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1251, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1252, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1253, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1254, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1255, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1256, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1257, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1258, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1259, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1260, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1261, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1262, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1263, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1264, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1265, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1266, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1267, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1268, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1269, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1270, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1271, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1272, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1273, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1274, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1275, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1276, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1277, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1278, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1279, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1280, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1281, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1282, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1283, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1284, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1285, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1286, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1287, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1288, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1289, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1290, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1291, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1292, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1293, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1294, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1295, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1296, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1297, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1298, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1299, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1300, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1301, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1302, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1303, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1304, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1305, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1306, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1307, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1308, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1309, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1310, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1311, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1312, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1313, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1314, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1315, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1316, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1317, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1318, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1319, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1320, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1321, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1322, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1323, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1324, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1325, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1326, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1327, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1328, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1329, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1330, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1331, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1332, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1333, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1334, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1335, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1336, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1337, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1338, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1339, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1340, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1341, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1342, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1343, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1344, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1345, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1346, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1347, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1348, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1349, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1350, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1351, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1352, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1353, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1354, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1355, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1356, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1357, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1358, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1359, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1360, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1361, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1362, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1363, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1364, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1365, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1366, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1367, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1368, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1369, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1370, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1371, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1372, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1373, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1374, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1375, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1376, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1377, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1378, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1379, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1380, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1381, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1382, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1383, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1384, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1385, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1386, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1387, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1388, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1389, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1390, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1391, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1392, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1393, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1394, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1395, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1396, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1397, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1398, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1399, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1400, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1401, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1402, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1403, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1404, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1405, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1406, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1407, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1408, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1409, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1410, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1411, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1412, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1413, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1414, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1415, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1416, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1417, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1418, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1419, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1420, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1421, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1422, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1423, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1424, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1425, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1426, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1427, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1428, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1429, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1430, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1431, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1432, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1433, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1434, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1435, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1436, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1437, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1438, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1439, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1440, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1441, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1442, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1443, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1444, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1445, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1446, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1447, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1448, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1449, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1450, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1451, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1452, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1453, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1454, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1455, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1456, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1457, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1458, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1459, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1460, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1461, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1462, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1463, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1464, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1465, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1466, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1467, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1468, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1469, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1470, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1471, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1472, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1473, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1474, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1475, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1476, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1477, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1478, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1479, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1480, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1481, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1482, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1483, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1484, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1485, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1486, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1487, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1488, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1489, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1490, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1491, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1492, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1493, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1494, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1495, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1496, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1497, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1498, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1499, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1500, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1501, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1502, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1503, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1504, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1505, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1506, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1507, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1508, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1509, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1510, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1511, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1512, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1513, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1514, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1515, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1516, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1517, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1518, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1519, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1520, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1521, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1522, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1523, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1524, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1525, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1526, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1527, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1528, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1529, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1530, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1531, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1532, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1533, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1534, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1535, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1536, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1537, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1538, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1539, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1540, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1541, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1542, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1543, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1544, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1545, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1546, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1547, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1548, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1549, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1550, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1551, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1552, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1553, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1554, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1555, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1556, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1557, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1558, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1559, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1560, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1561, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1562, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1563, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1564, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1565, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1566, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1567, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1568, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1569, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1570, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1571, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1572, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1573, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1574, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1575, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1576, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1577, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1578, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1579, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1580, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1581, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1582, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1583, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1584, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1585, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1586, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1587, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1588, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1589, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1590, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1591, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1592, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1593, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1594, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1595, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1596, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1597, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1598, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1599, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1600, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1601, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1602, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1603, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1604, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1605, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1606, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1607, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1608, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1609, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1610, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1611, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1612, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1613, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1614, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1615, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1616, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1617, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1618, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1619, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1620, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1621, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1622, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1623, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1624, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1625, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1626, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1627, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1628, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1629, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1630, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1631, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1632, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1633, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1634, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1635, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1636, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1637, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1638, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1639, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1640, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1641, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1642, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1643, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1644, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1645, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1646, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1647, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1648, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1649, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1650, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1651, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1652, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1653, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1654, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1655, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1656, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1657, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1658, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1659, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1660, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1661, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1662, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1663, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1664, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1665, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1666, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1667, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1668, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1669, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1670, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1671, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1672, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1673, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1674, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1675, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1676, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1677, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1678, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1679, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1680, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1681, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1682, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1683, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1684, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1685, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1686, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1687, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1688, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1689, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1690, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1691, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1692, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1693, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1694, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1695, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1696, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1697, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1698, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1699, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1700, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1701, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1702, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1703, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1704, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1705, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1706, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1707, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1708, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1709, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1710, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1711, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1712, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1713, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1714, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1715, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1716, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1717, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1718, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1719, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1720, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1721, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1722, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1723, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1724, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1725, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1726, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1727, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1728, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1729, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 1730, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -38936,24 +30281,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1734, "states": [ { "id": 1731, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -38964,16 +30304,11 @@ }, { "id": 1732, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -38984,16 +30319,11 @@ }, { "id": 1733, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39004,16 +30334,11 @@ }, { "id": 1734, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39024,16 +30349,11 @@ }, { "id": 1735, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39044,16 +30364,11 @@ }, { "id": 1736, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39064,16 +30379,11 @@ }, { "id": 1737, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39084,16 +30394,11 @@ }, { "id": 1738, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39104,16 +30409,11 @@ }, { "id": 1739, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39125,16 +30425,11 @@ }, { "id": 1740, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39145,16 +30440,11 @@ }, { "id": 1741, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39166,16 +30456,11 @@ }, { "id": 1742, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39186,16 +30471,11 @@ }, { "id": 1743, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39206,16 +30486,11 @@ }, { "id": 1744, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39227,16 +30502,11 @@ }, { "id": 1745, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39247,16 +30517,11 @@ }, { "id": 1746, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39309,24 +30574,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1750, "states": [ { "id": 1747, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39337,16 +30597,11 @@ }, { "id": 1748, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39357,16 +30612,11 @@ }, { "id": 1749, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39377,16 +30627,11 @@ }, { "id": 1750, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39397,16 +30642,11 @@ }, { "id": 1751, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39417,16 +30657,11 @@ }, { "id": 1752, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39437,16 +30672,11 @@ }, { "id": 1753, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39457,16 +30687,11 @@ }, { "id": 1754, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39477,16 +30702,11 @@ }, { "id": 1755, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39498,16 +30718,11 @@ }, { "id": 1756, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39518,16 +30733,11 @@ }, { "id": 1757, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39539,16 +30749,11 @@ }, { "id": 1758, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39559,16 +30764,11 @@ }, { "id": 1759, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39579,16 +30779,11 @@ }, { "id": 1760, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39600,16 +30795,11 @@ }, { "id": 1761, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39620,16 +30810,11 @@ }, { "id": 1762, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39682,24 +30867,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1766, "states": [ { "id": 1763, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39710,16 +30890,11 @@ }, { "id": 1764, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39730,16 +30905,11 @@ }, { "id": 1765, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39750,16 +30920,11 @@ }, { "id": 1766, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39770,16 +30935,11 @@ }, { "id": 1767, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39790,16 +30950,11 @@ }, { "id": 1768, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39810,16 +30965,11 @@ }, { "id": 1769, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -39830,16 +30980,11 @@ }, { "id": 1770, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -39850,16 +30995,11 @@ }, { "id": 1771, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39871,16 +31011,11 @@ }, { "id": 1772, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39891,16 +31026,11 @@ }, { "id": 1773, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39912,16 +31042,11 @@ }, { "id": 1774, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39932,16 +31057,11 @@ }, { "id": 1775, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39952,16 +31072,11 @@ }, { "id": 1776, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -39973,16 +31088,11 @@ }, { "id": 1777, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -39993,16 +31103,11 @@ }, { "id": 1778, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40055,24 +31160,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1782, "states": [ { "id": 1779, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40083,16 +31183,11 @@ }, { "id": 1780, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40103,16 +31198,11 @@ }, { "id": 1781, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40123,16 +31213,11 @@ }, { "id": 1782, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40143,16 +31228,11 @@ }, { "id": 1783, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40163,16 +31243,11 @@ }, { "id": 1784, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40183,16 +31258,11 @@ }, { "id": 1785, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40203,16 +31273,11 @@ }, { "id": 1786, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40223,16 +31288,11 @@ }, { "id": 1787, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40244,16 +31304,11 @@ }, { "id": 1788, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40264,16 +31319,11 @@ }, { "id": 1789, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40285,16 +31335,11 @@ }, { "id": 1790, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40305,16 +31350,11 @@ }, { "id": 1791, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40325,16 +31365,11 @@ }, { "id": 1792, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40346,16 +31381,11 @@ }, { "id": 1793, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40366,16 +31396,11 @@ }, { "id": 1794, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40428,24 +31453,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1798, "states": [ { "id": 1795, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40456,16 +31476,11 @@ }, { "id": 1796, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40476,16 +31491,11 @@ }, { "id": 1797, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40496,16 +31506,11 @@ }, { "id": 1798, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40516,16 +31521,11 @@ }, { "id": 1799, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40536,16 +31536,11 @@ }, { "id": 1800, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40556,16 +31551,11 @@ }, { "id": 1801, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40576,16 +31566,11 @@ }, { "id": 1802, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40596,16 +31581,11 @@ }, { "id": 1803, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40617,16 +31597,11 @@ }, { "id": 1804, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40637,16 +31612,11 @@ }, { "id": 1805, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40658,16 +31628,11 @@ }, { "id": 1806, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40678,16 +31643,11 @@ }, { "id": 1807, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40698,16 +31658,11 @@ }, { "id": 1808, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40719,16 +31674,11 @@ }, { "id": 1809, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -40739,16 +31689,11 @@ }, { "id": 1810, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40801,24 +31746,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1814, "states": [ { "id": 1811, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40829,16 +31769,11 @@ }, { "id": 1812, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40849,16 +31784,11 @@ }, { "id": 1813, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40869,16 +31799,11 @@ }, { "id": 1814, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40889,16 +31814,11 @@ }, { "id": 1815, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40909,16 +31829,11 @@ }, { "id": 1816, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40929,16 +31844,11 @@ }, { "id": 1817, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -40949,16 +31859,11 @@ }, { "id": 1818, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -40969,16 +31874,11 @@ }, { "id": 1819, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -40990,16 +31890,11 @@ }, { "id": 1820, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41010,16 +31905,11 @@ }, { "id": 1821, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41031,16 +31921,11 @@ }, { "id": 1822, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41051,16 +31936,11 @@ }, { "id": 1823, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41071,16 +31951,11 @@ }, { "id": 1824, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41092,16 +31967,11 @@ }, { "id": 1825, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41112,16 +31982,11 @@ }, { "id": 1826, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41174,24 +32039,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1830, "states": [ { "id": 1827, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41202,16 +32062,11 @@ }, { "id": 1828, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41222,16 +32077,11 @@ }, { "id": 1829, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41242,16 +32092,11 @@ }, { "id": 1830, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41262,16 +32107,11 @@ }, { "id": 1831, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41282,16 +32122,11 @@ }, { "id": 1832, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41302,16 +32137,11 @@ }, { "id": 1833, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41322,16 +32152,11 @@ }, { "id": 1834, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41342,16 +32167,11 @@ }, { "id": 1835, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41363,16 +32183,11 @@ }, { "id": 1836, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41383,16 +32198,11 @@ }, { "id": 1837, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41404,16 +32214,11 @@ }, { "id": 1838, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41424,16 +32229,11 @@ }, { "id": 1839, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41444,16 +32244,11 @@ }, { "id": 1840, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41465,16 +32260,11 @@ }, { "id": 1841, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41485,16 +32275,11 @@ }, { "id": 1842, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41547,24 +32332,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1846, "states": [ { "id": 1843, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41575,16 +32355,11 @@ }, { "id": 1844, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41595,16 +32370,11 @@ }, { "id": 1845, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41615,16 +32385,11 @@ }, { "id": 1846, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41635,16 +32400,11 @@ }, { "id": 1847, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41655,16 +32415,11 @@ }, { "id": 1848, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41675,16 +32430,11 @@ }, { "id": 1849, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41695,16 +32445,11 @@ }, { "id": 1850, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41715,16 +32460,11 @@ }, { "id": 1851, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41736,16 +32476,11 @@ }, { "id": 1852, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41756,16 +32491,11 @@ }, { "id": 1853, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41777,16 +32507,11 @@ }, { "id": 1854, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41797,16 +32522,11 @@ }, { "id": 1855, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41817,16 +32537,11 @@ }, { "id": 1856, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41838,16 +32553,11 @@ }, { "id": 1857, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -41858,16 +32568,11 @@ }, { "id": 1858, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -41920,24 +32625,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1862, "states": [ { "id": 1859, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41948,16 +32648,11 @@ }, { "id": 1860, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -41968,16 +32663,11 @@ }, { "id": 1861, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -41988,16 +32678,11 @@ }, { "id": 1862, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42008,16 +32693,11 @@ }, { "id": 1863, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42028,16 +32708,11 @@ }, { "id": 1864, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42048,16 +32723,11 @@ }, { "id": 1865, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42068,16 +32738,11 @@ }, { "id": 1866, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42088,16 +32753,11 @@ }, { "id": 1867, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42109,16 +32769,11 @@ }, { "id": 1868, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42129,16 +32784,11 @@ }, { "id": 1869, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42150,16 +32800,11 @@ }, { "id": 1870, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42170,16 +32815,11 @@ }, { "id": 1871, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42190,16 +32830,11 @@ }, { "id": 1872, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42211,16 +32846,11 @@ }, { "id": 1873, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42231,16 +32861,11 @@ }, { "id": 1874, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42293,24 +32918,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1878, "states": [ { "id": 1875, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42321,16 +32941,11 @@ }, { "id": 1876, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42341,16 +32956,11 @@ }, { "id": 1877, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42361,16 +32971,11 @@ }, { "id": 1878, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42381,16 +32986,11 @@ }, { "id": 1879, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42401,16 +33001,11 @@ }, { "id": 1880, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42421,16 +33016,11 @@ }, { "id": 1881, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42441,16 +33031,11 @@ }, { "id": 1882, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42461,16 +33046,11 @@ }, { "id": 1883, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42482,16 +33062,11 @@ }, { "id": 1884, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42502,16 +33077,11 @@ }, { "id": 1885, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42523,16 +33093,11 @@ }, { "id": 1886, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42543,16 +33108,11 @@ }, { "id": 1887, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42563,16 +33123,11 @@ }, { "id": 1888, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42584,16 +33139,11 @@ }, { "id": 1889, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42604,16 +33154,11 @@ }, { "id": 1890, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42666,24 +33211,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1894, "states": [ { "id": 1891, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42694,16 +33234,11 @@ }, { "id": 1892, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42714,16 +33249,11 @@ }, { "id": 1893, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42734,16 +33264,11 @@ }, { "id": 1894, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42754,16 +33279,11 @@ }, { "id": 1895, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42774,16 +33294,11 @@ }, { "id": 1896, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42794,16 +33309,11 @@ }, { "id": 1897, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -42814,16 +33324,11 @@ }, { "id": 1898, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -42834,16 +33339,11 @@ }, { "id": 1899, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42855,16 +33355,11 @@ }, { "id": 1900, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42875,16 +33370,11 @@ }, { "id": 1901, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42896,16 +33386,11 @@ }, { "id": 1902, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42916,16 +33401,11 @@ }, { "id": 1903, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42936,16 +33416,11 @@ }, { "id": 1904, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -42957,16 +33432,11 @@ }, { "id": 1905, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -42977,16 +33447,11 @@ }, { "id": 1906, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43039,24 +33504,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1910, "states": [ { "id": 1907, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43067,16 +33527,11 @@ }, { "id": 1908, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43087,16 +33542,11 @@ }, { "id": 1909, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43107,16 +33557,11 @@ }, { "id": 1910, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43127,16 +33572,11 @@ }, { "id": 1911, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43147,16 +33587,11 @@ }, { "id": 1912, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43167,16 +33602,11 @@ }, { "id": 1913, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43187,16 +33617,11 @@ }, { "id": 1914, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43207,16 +33632,11 @@ }, { "id": 1915, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43228,16 +33648,11 @@ }, { "id": 1916, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43248,16 +33663,11 @@ }, { "id": 1917, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43269,16 +33679,11 @@ }, { "id": 1918, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43289,16 +33694,11 @@ }, { "id": 1919, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43309,16 +33709,11 @@ }, { "id": 1920, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43330,16 +33725,11 @@ }, { "id": 1921, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43350,16 +33740,11 @@ }, { "id": 1922, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43412,24 +33797,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1926, "states": [ { "id": 1923, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43440,16 +33820,11 @@ }, { "id": 1924, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43460,16 +33835,11 @@ }, { "id": 1925, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43480,16 +33850,11 @@ }, { "id": 1926, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43500,16 +33865,11 @@ }, { "id": 1927, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43520,16 +33880,11 @@ }, { "id": 1928, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43540,16 +33895,11 @@ }, { "id": 1929, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43560,16 +33910,11 @@ }, { "id": 1930, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43580,16 +33925,11 @@ }, { "id": 1931, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43601,16 +33941,11 @@ }, { "id": 1932, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43621,16 +33956,11 @@ }, { "id": 1933, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43642,16 +33972,11 @@ }, { "id": 1934, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43662,16 +33987,11 @@ }, { "id": 1935, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43682,16 +34002,11 @@ }, { "id": 1936, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43703,16 +34018,11 @@ }, { "id": 1937, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43723,16 +34033,11 @@ }, { "id": 1938, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43785,24 +34090,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1942, "states": [ { "id": 1939, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43813,16 +34113,11 @@ }, { "id": 1940, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43833,16 +34128,11 @@ }, { "id": 1941, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43853,16 +34143,11 @@ }, { "id": 1942, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43873,16 +34158,11 @@ }, { "id": 1943, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43893,16 +34173,11 @@ }, { "id": 1944, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43913,16 +34188,11 @@ }, { "id": 1945, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -43933,16 +34203,11 @@ }, { "id": 1946, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -43953,16 +34218,11 @@ }, { "id": 1947, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -43974,16 +34234,11 @@ }, { "id": 1948, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -43994,16 +34249,11 @@ }, { "id": 1949, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44015,16 +34265,11 @@ }, { "id": 1950, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44035,16 +34280,11 @@ }, { "id": 1951, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44055,16 +34295,11 @@ }, { "id": 1952, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44076,16 +34311,11 @@ }, { "id": 1953, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44096,16 +34326,11 @@ }, { "id": 1954, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44158,24 +34383,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1958, "states": [ { "id": 1955, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44186,16 +34406,11 @@ }, { "id": 1956, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44206,16 +34421,11 @@ }, { "id": 1957, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44226,16 +34436,11 @@ }, { "id": 1958, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44246,16 +34451,11 @@ }, { "id": 1959, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44266,16 +34466,11 @@ }, { "id": 1960, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44286,16 +34481,11 @@ }, { "id": 1961, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44306,16 +34496,11 @@ }, { "id": 1962, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44326,16 +34511,11 @@ }, { "id": 1963, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44347,16 +34527,11 @@ }, { "id": 1964, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44367,16 +34542,11 @@ }, { "id": 1965, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44388,16 +34558,11 @@ }, { "id": 1966, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44408,16 +34573,11 @@ }, { "id": 1967, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44428,16 +34588,11 @@ }, { "id": 1968, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44449,16 +34604,11 @@ }, { "id": 1969, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44469,16 +34619,11 @@ }, { "id": 1970, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44531,24 +34676,19 @@ ] }, "properties": [ - -1870206692, - 546620605, - -1080896095 + 1877134791, + 740044492, + -288759893 ], "default_state_id": 1974, "states": [ { "id": 1971, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44559,16 +34699,11 @@ }, { "id": 1972, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44579,16 +34714,11 @@ }, { "id": 1973, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44599,16 +34729,11 @@ }, { "id": 1974, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44619,16 +34744,11 @@ }, { "id": 1975, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44639,16 +34759,11 @@ }, { "id": 1976, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44659,16 +34774,11 @@ }, { "id": 1977, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 5, 6, @@ -44679,16 +34789,11 @@ }, { "id": 1978, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 2, @@ -44699,16 +34804,11 @@ }, { "id": 1979, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44720,16 +34820,11 @@ }, { "id": 1980, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44740,16 +34835,11 @@ }, { "id": 1981, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44761,16 +34851,11 @@ }, { "id": 1982, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44781,16 +34866,11 @@ }, { "id": 1983, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44801,16 +34881,11 @@ }, { "id": 1984, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44822,16 +34897,11 @@ }, { "id": 1985, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 2, 6, @@ -44842,16 +34912,11 @@ }, { "id": 1986, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -44895,346 +34960,226 @@ ] }, "properties": [ - -634074493, - 382516644, - 795783032 + -440650606, + -1920199656, + 989206919 ], "default_state_id": 2000, "states": [ { "id": 1987, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1988, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1989, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1990, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1991, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1992, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1993, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1994, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1995, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1996, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1997, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1998, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 1999, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2000, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2001, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2002, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2003, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2004, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2005, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2006, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2007, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2008, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2009, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2010, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -45271,346 +35216,226 @@ ] }, "properties": [ - -634074493, - 382516644, - 795783032 + -440650606, + -1920199656, + 989206919 ], "default_state_id": 2024, "states": [ { "id": 2011, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2012, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2013, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2014, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2015, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2016, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2017, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2018, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2019, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2020, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2021, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2022, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2023, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2024, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2025, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2026, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2027, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2028, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2029, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2030, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2031, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2032, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2033, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2034, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -45647,211 +35472,151 @@ ] }, "properties": [ - -2067017896, - 1627058566 + -1873594009, + 2060047744 ], "default_state_id": 2041, "states": [ { "id": 2035, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 14 ] }, { "id": 2036, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 15 ] }, { "id": 2037, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 16 ] }, { "id": 2038, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 17 ] }, { "id": 2039, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 18 ] }, { "id": 2040, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 19 ] }, { "id": 2041, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2042, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2043, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2044, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2045, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2046, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -45931,16 +35696,11 @@ "states": [ { "id": 2047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 4.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -46012,16 +35772,11 @@ "states": [ { "id": 2048, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46093,16 +35848,11 @@ "states": [ { "id": 2049, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46169,16 +35919,11 @@ "states": [ { "id": 2050, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46242,16 +35987,11 @@ "states": [ { "id": 2051, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46315,16 +36055,11 @@ "states": [ { "id": 2052, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46388,16 +36123,11 @@ "states": [ { "id": 2053, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46441,16 +36171,11 @@ "states": [ { "id": 2054, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46497,36 +36222,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 2056, "states": [ { "id": 2055, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2056, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -46563,211 +36278,151 @@ ] }, "properties": [ - -2067017896, - 1627058566 + -1873594009, + 2060047744 ], "default_state_id": 2063, "states": [ { "id": 2057, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 14 ] }, { "id": 2058, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 15 ] }, { "id": 2059, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 16 ] }, { "id": 2060, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 17 ] }, { "id": 2061, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 18 ] }, { "id": 2062, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 19 ] }, { "id": 2063, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2064, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2065, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2066, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2067, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2068, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -46785,25 +36440,20 @@ "blast_resistance": 1.5, "item_id": 0, "properties": [ - 1627058566, - -136714597, - 2136417609 + 2060047744, + 56709290, + -1917342975 ], "default_state_id": 2071, "states": [ { "id": 2069, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 20, 21 @@ -46811,17 +36461,12 @@ }, { "id": 2070, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 20, 21 @@ -46829,17 +36474,12 @@ }, { "id": 2071, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 20, 22 @@ -46847,17 +36487,12 @@ }, { "id": 2072, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 20, 22 @@ -46865,17 +36500,12 @@ }, { "id": 2073, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 23, 24 @@ -46883,17 +36513,12 @@ }, { "id": 2074, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 23, 24 @@ -46901,17 +36526,12 @@ }, { "id": 2075, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 23, 25 @@ -46919,17 +36539,12 @@ }, { "id": 2076, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 23, 25 @@ -46937,17 +36552,12 @@ }, { "id": 2077, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 26, 27 @@ -46955,17 +36565,12 @@ }, { "id": 2078, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 26, 27 @@ -46973,17 +36578,12 @@ }, { "id": 2079, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 26, 28 @@ -46991,17 +36591,12 @@ }, { "id": 2080, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 26, 28 @@ -47009,17 +36604,12 @@ }, { "id": 2081, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 29, 30 @@ -47027,17 +36617,12 @@ }, { "id": 2082, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 29, 30 @@ -47045,17 +36630,12 @@ }, { "id": 2083, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 29, 31 @@ -47063,17 +36643,12 @@ }, { "id": 2084, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 29, 31 @@ -47081,17 +36656,12 @@ }, { "id": 2085, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 32, 33, @@ -47102,17 +36672,12 @@ }, { "id": 2086, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 32, 33, @@ -47123,17 +36688,12 @@ }, { "id": 2087, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 37, 33, @@ -47144,17 +36704,12 @@ }, { "id": 2088, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 37, 33, @@ -47165,17 +36720,12 @@ }, { "id": 2089, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 38, 39 @@ -47183,17 +36733,12 @@ }, { "id": 2090, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 38, 39 @@ -47201,17 +36746,12 @@ }, { "id": 2091, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 38, 40 @@ -47219,17 +36759,12 @@ }, { "id": 2092, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 38, 40 @@ -47273,17 +36808,12 @@ "states": [ { "id": 2093, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47326,17 +36856,12 @@ "states": [ { "id": 2094, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47379,17 +36904,12 @@ "states": [ { "id": 2095, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47432,17 +36952,12 @@ "states": [ { "id": 2096, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47485,17 +37000,12 @@ "states": [ { "id": 2097, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47538,17 +37048,12 @@ "states": [ { "id": 2098, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47591,17 +37096,12 @@ "states": [ { "id": 2099, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47644,17 +37144,12 @@ "states": [ { "id": 2100, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47697,17 +37192,12 @@ "states": [ { "id": 2101, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47750,17 +37240,12 @@ "states": [ { "id": 2102, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47803,17 +37288,12 @@ "states": [ { "id": 2103, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47856,17 +37336,12 @@ "states": [ { "id": 2104, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47909,17 +37384,12 @@ "states": [ { "id": 2105, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -47962,17 +37432,12 @@ "states": [ { "id": 2106, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -48015,17 +37480,12 @@ "states": [ { "id": 2107, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -48068,17 +37528,12 @@ "states": [ { "id": 2108, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "GUITAR", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -48096,188 +37551,128 @@ "blast_resistance": 0.0, "item_id": 0, "properties": [ - 1627058566, - 2136417609 + 2060047744, + -1917342975 ], "default_state_id": 2109, "states": [ { "id": 2109, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2110, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2111, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2112, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2113, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2114, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2115, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2116, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2117, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2118, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2119, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 }, { "id": 2120, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 11 } @@ -48319,16 +37714,11 @@ "states": [ { "id": 2121, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48369,16 +37759,11 @@ "states": [ { "id": 2122, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48419,16 +37804,11 @@ "states": [ { "id": 2123, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48469,16 +37849,11 @@ "states": [ { "id": 2124, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48519,16 +37894,11 @@ "states": [ { "id": 2125, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48569,16 +37939,11 @@ "states": [ { "id": 2126, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48619,16 +37984,11 @@ "states": [ { "id": 2127, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48669,16 +38029,11 @@ "states": [ { "id": 2128, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48719,16 +38074,11 @@ "states": [ { "id": 2129, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48769,16 +38119,11 @@ "states": [ { "id": 2130, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48819,16 +38164,11 @@ "states": [ { "id": 2131, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48869,16 +38209,11 @@ "states": [ { "id": 2132, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48919,16 +38254,11 @@ "states": [ { "id": 2133, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -48969,16 +38299,11 @@ "states": [ { "id": 2134, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -49019,16 +38344,11 @@ "states": [ { "id": 2135, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -49069,16 +38389,11 @@ "states": [ { "id": 2136, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -49119,17 +38434,12 @@ "states": [ { "id": 2137, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BELL", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -49172,17 +38482,12 @@ "states": [ { "id": 2138, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "IRON_XYLOPHONE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -49225,17 +38530,12 @@ "states": [ { "id": 2139, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -49283,40 +38583,30 @@ ] }, "properties": [ - -252123853 + -58699966 ], "default_state_id": 2141, "states": [ { "id": 2140, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 2141, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -49390,17 +38680,12 @@ "states": [ { "id": 2142, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -49451,29 +38736,24 @@ ] }, "properties": [ - -1870206692, - -1022489395, - -1219002900, - -1415516405, - -1612029910, - -1808543415, - -2005056920 + 1877134791, + -829065508, + -1025579013, + -1222092518, + -1418606023, + -1615119528, + -1811633033 ], "default_state_id": 2206, "states": [ { "id": 2143, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49481,17 +38761,12 @@ }, { "id": 2144, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49499,17 +38774,12 @@ }, { "id": 2145, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49517,17 +38787,12 @@ }, { "id": 2146, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49535,17 +38800,12 @@ }, { "id": 2147, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49553,17 +38813,12 @@ }, { "id": 2148, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49571,17 +38826,12 @@ }, { "id": 2149, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49589,17 +38839,12 @@ }, { "id": 2150, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49607,17 +38852,12 @@ }, { "id": 2151, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49625,17 +38865,12 @@ }, { "id": 2152, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49643,17 +38878,12 @@ }, { "id": 2153, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49661,17 +38891,12 @@ }, { "id": 2154, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49679,17 +38904,12 @@ }, { "id": 2155, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49697,17 +38917,12 @@ }, { "id": 2156, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49715,17 +38930,12 @@ }, { "id": 2157, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49733,17 +38943,12 @@ }, { "id": 2158, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49751,17 +38956,12 @@ }, { "id": 2159, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49769,17 +38969,12 @@ }, { "id": 2160, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49787,17 +38982,12 @@ }, { "id": 2161, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49805,17 +38995,12 @@ }, { "id": 2162, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49823,17 +39008,12 @@ }, { "id": 2163, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49841,17 +39021,12 @@ }, { "id": 2164, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49859,17 +39034,12 @@ }, { "id": 2165, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49877,17 +39047,12 @@ }, { "id": 2166, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49895,17 +39060,12 @@ }, { "id": 2167, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49913,17 +39073,12 @@ }, { "id": 2168, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49931,17 +39086,12 @@ }, { "id": 2169, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49949,17 +39099,12 @@ }, { "id": 2170, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49967,17 +39112,12 @@ }, { "id": 2171, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -49985,17 +39125,12 @@ }, { "id": 2172, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50003,17 +39138,12 @@ }, { "id": 2173, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50021,17 +39151,12 @@ }, { "id": 2174, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50039,17 +39164,12 @@ }, { "id": 2175, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50057,17 +39177,12 @@ }, { "id": 2176, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50075,17 +39190,12 @@ }, { "id": 2177, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50093,17 +39203,12 @@ }, { "id": 2178, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50111,17 +39216,12 @@ }, { "id": 2179, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50129,17 +39229,12 @@ }, { "id": 2180, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50147,17 +39242,12 @@ }, { "id": 2181, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50165,17 +39255,12 @@ }, { "id": 2182, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50183,17 +39268,12 @@ }, { "id": 2183, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50201,17 +39281,12 @@ }, { "id": 2184, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50219,17 +39294,12 @@ }, { "id": 2185, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50237,17 +39307,12 @@ }, { "id": 2186, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50255,17 +39320,12 @@ }, { "id": 2187, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50273,17 +39333,12 @@ }, { "id": 2188, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50291,17 +39346,12 @@ }, { "id": 2189, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50309,17 +39359,12 @@ }, { "id": 2190, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50327,17 +39372,12 @@ }, { "id": 2191, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50345,17 +39385,12 @@ }, { "id": 2192, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50363,17 +39398,12 @@ }, { "id": 2193, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50381,17 +39411,12 @@ }, { "id": 2194, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50399,17 +39424,12 @@ }, { "id": 2195, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50417,17 +39437,12 @@ }, { "id": 2196, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50435,17 +39450,12 @@ }, { "id": 2197, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50453,17 +39463,12 @@ }, { "id": 2198, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50471,17 +39476,12 @@ }, { "id": 2199, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50489,17 +39489,12 @@ }, { "id": 2200, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50507,17 +39502,12 @@ }, { "id": 2201, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50525,17 +39515,12 @@ }, { "id": 2202, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50543,17 +39528,12 @@ }, { "id": 2203, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50561,17 +39541,12 @@ }, { "id": 2204, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50579,17 +39554,12 @@ }, { "id": 2205, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50597,17 +39567,12 @@ }, { "id": 2206, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50615,17 +39580,12 @@ }, { "id": 2207, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50633,17 +39593,12 @@ }, { "id": 2208, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50651,17 +39606,12 @@ }, { "id": 2209, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50669,17 +39619,12 @@ }, { "id": 2210, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50687,17 +39632,12 @@ }, { "id": 2211, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50705,17 +39645,12 @@ }, { "id": 2212, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50723,17 +39658,12 @@ }, { "id": 2213, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50741,17 +39671,12 @@ }, { "id": 2214, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50759,17 +39684,12 @@ }, { "id": 2215, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50777,17 +39697,12 @@ }, { "id": 2216, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50795,17 +39710,12 @@ }, { "id": 2217, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50813,17 +39723,12 @@ }, { "id": 2218, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50831,17 +39736,12 @@ }, { "id": 2219, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50849,17 +39749,12 @@ }, { "id": 2220, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50867,17 +39762,12 @@ }, { "id": 2221, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50885,17 +39775,12 @@ }, { "id": 2222, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50903,17 +39788,12 @@ }, { "id": 2223, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50921,17 +39801,12 @@ }, { "id": 2224, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50939,17 +39814,12 @@ }, { "id": 2225, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50957,17 +39827,12 @@ }, { "id": 2226, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50975,17 +39840,12 @@ }, { "id": 2227, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -50993,17 +39853,12 @@ }, { "id": 2228, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51011,17 +39866,12 @@ }, { "id": 2229, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51029,17 +39879,12 @@ }, { "id": 2230, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51047,17 +39892,12 @@ }, { "id": 2231, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51065,17 +39905,12 @@ }, { "id": 2232, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51083,17 +39918,12 @@ }, { "id": 2233, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51101,17 +39931,12 @@ }, { "id": 2234, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51119,17 +39944,12 @@ }, { "id": 2235, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51137,17 +39957,12 @@ }, { "id": 2236, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51155,17 +39970,12 @@ }, { "id": 2237, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51173,17 +39983,12 @@ }, { "id": 2238, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51191,17 +39996,12 @@ }, { "id": 2239, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51209,17 +40009,12 @@ }, { "id": 2240, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51227,17 +40022,12 @@ }, { "id": 2241, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51245,17 +40035,12 @@ }, { "id": 2242, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51263,17 +40048,12 @@ }, { "id": 2243, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51281,17 +40061,12 @@ }, { "id": 2244, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51299,17 +40074,12 @@ }, { "id": 2245, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51317,17 +40087,12 @@ }, { "id": 2246, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51335,17 +40100,12 @@ }, { "id": 2247, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51353,17 +40113,12 @@ }, { "id": 2248, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51371,17 +40126,12 @@ }, { "id": 2249, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51389,17 +40139,12 @@ }, { "id": 2250, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51407,17 +40152,12 @@ }, { "id": 2251, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51425,17 +40165,12 @@ }, { "id": 2252, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51443,17 +40178,12 @@ }, { "id": 2253, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51461,17 +40191,12 @@ }, { "id": 2254, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51479,17 +40204,12 @@ }, { "id": 2255, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51497,17 +40217,12 @@ }, { "id": 2256, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51515,17 +40230,12 @@ }, { "id": 2257, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51533,17 +40243,12 @@ }, { "id": 2258, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51551,17 +40256,12 @@ }, { "id": 2259, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51569,17 +40269,12 @@ }, { "id": 2260, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51587,17 +40282,12 @@ }, { "id": 2261, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51605,17 +40295,12 @@ }, { "id": 2262, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51623,17 +40308,12 @@ }, { "id": 2263, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51641,17 +40321,12 @@ }, { "id": 2264, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51659,17 +40334,12 @@ }, { "id": 2265, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51677,17 +40347,12 @@ }, { "id": 2266, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51695,17 +40360,12 @@ }, { "id": 2267, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51713,17 +40373,12 @@ }, { "id": 2268, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51731,17 +40386,12 @@ }, { "id": 2269, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51749,17 +40399,12 @@ }, { "id": 2270, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51767,17 +40412,12 @@ }, { "id": 2271, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51785,17 +40425,12 @@ }, { "id": 2272, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51803,17 +40438,12 @@ }, { "id": 2273, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51821,17 +40451,12 @@ }, { "id": 2274, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51839,17 +40464,12 @@ }, { "id": 2275, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51857,17 +40477,12 @@ }, { "id": 2276, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51875,17 +40490,12 @@ }, { "id": 2277, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51893,17 +40503,12 @@ }, { "id": 2278, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51911,17 +40516,12 @@ }, { "id": 2279, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51929,17 +40529,12 @@ }, { "id": 2280, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51947,17 +40542,12 @@ }, { "id": 2281, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51965,17 +40555,12 @@ }, { "id": 2282, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -51983,17 +40568,12 @@ }, { "id": 2283, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52001,17 +40581,12 @@ }, { "id": 2284, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52019,17 +40594,12 @@ }, { "id": 2285, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52037,17 +40607,12 @@ }, { "id": 2286, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52055,17 +40620,12 @@ }, { "id": 2287, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52073,17 +40633,12 @@ }, { "id": 2288, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52091,17 +40646,12 @@ }, { "id": 2289, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52109,17 +40659,12 @@ }, { "id": 2290, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52127,17 +40672,12 @@ }, { "id": 2291, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52145,17 +40685,12 @@ }, { "id": 2292, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52163,17 +40698,12 @@ }, { "id": 2293, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52181,17 +40711,12 @@ }, { "id": 2294, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52199,17 +40724,12 @@ }, { "id": 2295, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52217,17 +40737,12 @@ }, { "id": 2296, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52235,17 +40750,12 @@ }, { "id": 2297, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52253,17 +40763,12 @@ }, { "id": 2298, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52271,17 +40776,12 @@ }, { "id": 2299, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52289,17 +40789,12 @@ }, { "id": 2300, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52307,17 +40802,12 @@ }, { "id": 2301, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52325,17 +40815,12 @@ }, { "id": 2302, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52343,17 +40828,12 @@ }, { "id": 2303, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52361,17 +40841,12 @@ }, { "id": 2304, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52379,17 +40854,12 @@ }, { "id": 2305, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52397,17 +40867,12 @@ }, { "id": 2306, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52415,17 +40880,12 @@ }, { "id": 2307, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52433,17 +40893,12 @@ }, { "id": 2308, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52451,17 +40906,12 @@ }, { "id": 2309, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52469,17 +40919,12 @@ }, { "id": 2310, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52487,17 +40932,12 @@ }, { "id": 2311, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52505,17 +40945,12 @@ }, { "id": 2312, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52523,17 +40958,12 @@ }, { "id": 2313, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52541,17 +40971,12 @@ }, { "id": 2314, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52559,17 +40984,12 @@ }, { "id": 2315, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52577,17 +40997,12 @@ }, { "id": 2316, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52595,17 +41010,12 @@ }, { "id": 2317, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52613,17 +41023,12 @@ }, { "id": 2318, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52631,17 +41036,12 @@ }, { "id": 2319, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52649,17 +41049,12 @@ }, { "id": 2320, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52667,17 +41062,12 @@ }, { "id": 2321, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52685,17 +41075,12 @@ }, { "id": 2322, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52703,17 +41088,12 @@ }, { "id": 2323, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52721,17 +41101,12 @@ }, { "id": 2324, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52739,17 +41114,12 @@ }, { "id": 2325, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52757,17 +41127,12 @@ }, { "id": 2326, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52775,17 +41140,12 @@ }, { "id": 2327, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52793,17 +41153,12 @@ }, { "id": 2328, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52811,17 +41166,12 @@ }, { "id": 2329, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52829,17 +41179,12 @@ }, { "id": 2330, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52847,17 +41192,12 @@ }, { "id": 2331, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52865,17 +41205,12 @@ }, { "id": 2332, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52883,17 +41218,12 @@ }, { "id": 2333, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52901,17 +41231,12 @@ }, { "id": 2334, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52919,17 +41244,12 @@ }, { "id": 2335, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52937,17 +41257,12 @@ }, { "id": 2336, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52955,17 +41270,12 @@ }, { "id": 2337, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52973,17 +41283,12 @@ }, { "id": 2338, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -52991,17 +41296,12 @@ }, { "id": 2339, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53009,17 +41309,12 @@ }, { "id": 2340, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53027,17 +41322,12 @@ }, { "id": 2341, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53045,17 +41335,12 @@ }, { "id": 2342, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53063,17 +41348,12 @@ }, { "id": 2343, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53081,17 +41361,12 @@ }, { "id": 2344, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53099,17 +41374,12 @@ }, { "id": 2345, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53117,17 +41387,12 @@ }, { "id": 2346, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53135,17 +41400,12 @@ }, { "id": 2347, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53153,17 +41413,12 @@ }, { "id": 2348, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53171,17 +41426,12 @@ }, { "id": 2349, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53189,17 +41439,12 @@ }, { "id": 2350, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53207,17 +41452,12 @@ }, { "id": 2351, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53225,17 +41465,12 @@ }, { "id": 2352, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53243,17 +41478,12 @@ }, { "id": 2353, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53261,17 +41491,12 @@ }, { "id": 2354, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53279,17 +41504,12 @@ }, { "id": 2355, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53297,17 +41517,12 @@ }, { "id": 2356, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53315,17 +41530,12 @@ }, { "id": 2357, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53333,17 +41543,12 @@ }, { "id": 2358, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53351,17 +41556,12 @@ }, { "id": 2359, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53369,17 +41569,12 @@ }, { "id": 2360, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53387,17 +41582,12 @@ }, { "id": 2361, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53405,17 +41595,12 @@ }, { "id": 2362, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53423,17 +41608,12 @@ }, { "id": 2363, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53441,17 +41621,12 @@ }, { "id": 2364, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53459,17 +41634,12 @@ }, { "id": 2365, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53477,17 +41647,12 @@ }, { "id": 2366, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53495,17 +41660,12 @@ }, { "id": 2367, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53513,17 +41673,12 @@ }, { "id": 2368, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53531,17 +41686,12 @@ }, { "id": 2369, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53549,17 +41699,12 @@ }, { "id": 2370, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53567,17 +41712,12 @@ }, { "id": 2371, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53585,17 +41725,12 @@ }, { "id": 2372, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53603,17 +41738,12 @@ }, { "id": 2373, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53621,17 +41751,12 @@ }, { "id": 2374, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53639,17 +41764,12 @@ }, { "id": 2375, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53657,17 +41777,12 @@ }, { "id": 2376, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53675,17 +41790,12 @@ }, { "id": 2377, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53693,17 +41803,12 @@ }, { "id": 2378, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53711,17 +41816,12 @@ }, { "id": 2379, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53729,17 +41829,12 @@ }, { "id": 2380, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53747,17 +41842,12 @@ }, { "id": 2381, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53765,17 +41855,12 @@ }, { "id": 2382, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53783,17 +41868,12 @@ }, { "id": 2383, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53801,17 +41881,12 @@ }, { "id": 2384, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53819,17 +41894,12 @@ }, { "id": 2385, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53837,17 +41907,12 @@ }, { "id": 2386, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53855,17 +41920,12 @@ }, { "id": 2387, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53873,17 +41933,12 @@ }, { "id": 2388, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53891,17 +41946,12 @@ }, { "id": 2389, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53909,17 +41959,12 @@ }, { "id": 2390, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53927,17 +41972,12 @@ }, { "id": 2391, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53945,17 +41985,12 @@ }, { "id": 2392, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53963,17 +41998,12 @@ }, { "id": 2393, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53981,17 +42011,12 @@ }, { "id": 2394, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -53999,17 +42024,12 @@ }, { "id": 2395, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -54017,17 +42037,12 @@ }, { "id": 2396, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -54035,17 +42050,12 @@ }, { "id": 2397, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -54053,17 +42063,12 @@ }, { "id": 2398, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -54107,17 +42112,12 @@ "states": [ { "id": 2399, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -54160,17 +42160,12 @@ "states": [ { "id": 2400, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -54213,16 +42208,11 @@ "states": [ { "id": 2401, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -54259,64 +42249,44 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 2402, "states": [ { "id": 2402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 2405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -54336,7181 +42306,4621 @@ "random_sequence": "minecraft:blocks/fire" }, "properties": [ - 1253390778, - -243022308, - -141120732, - -136500244, - -246124358, - -242482226 + 608542609, + -49598421, + 52303155, + 56923643, + -52700471, + -49058339 ], "default_state_id": 2437, "states": [ { "id": 2406, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2407, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2408, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2409, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2410, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2411, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2412, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2413, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2414, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2415, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2416, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2417, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2418, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2419, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2420, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2421, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2422, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2423, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2424, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2425, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2426, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2427, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2428, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2429, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2430, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2431, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2432, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2433, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2434, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2435, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2436, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2437, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2438, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2439, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2440, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2441, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2442, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2443, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2444, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2445, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2446, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2447, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2448, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2449, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2450, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2451, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2452, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2453, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2454, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2455, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2456, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2457, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2458, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2459, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2460, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2461, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2462, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2463, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2464, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2465, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2466, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2467, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2468, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2469, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2470, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2471, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2472, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2473, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2474, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2475, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2476, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2477, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2478, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2479, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2480, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2481, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2482, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2483, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2484, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2485, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2486, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2487, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2488, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2489, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2490, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2491, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2492, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2493, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2494, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2495, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2496, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2497, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2498, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2499, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2500, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2501, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2502, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2503, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2504, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2505, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2506, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2507, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2508, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2509, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2510, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2511, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2512, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2513, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2514, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2515, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2516, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2517, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2518, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2519, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2520, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2521, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2522, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2523, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2524, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2525, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2526, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2527, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2528, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2529, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2530, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2531, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2532, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2533, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2534, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2535, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2536, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2537, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2538, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2539, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2540, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2541, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2542, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2543, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2544, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2545, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2546, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2547, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2548, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2549, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2550, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2551, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2552, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2553, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2554, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2555, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2556, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2557, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2558, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2559, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2560, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2561, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2562, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2563, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2564, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2565, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2566, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2567, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2568, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2569, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2570, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2571, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2572, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2573, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2574, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2575, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2576, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2577, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2578, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2579, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2580, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2581, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2582, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2583, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2584, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2585, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2586, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2587, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2588, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2589, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2590, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2591, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2592, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2593, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2594, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2595, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2596, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2597, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2598, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2599, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2600, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2601, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2602, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2603, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2604, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2605, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2606, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2607, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2608, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2609, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2610, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2611, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2612, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2613, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2614, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2615, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2616, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2617, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2618, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2619, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2620, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2621, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2622, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2623, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2624, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2625, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2626, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2627, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2628, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2629, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2630, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2631, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2632, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2633, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2634, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2635, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2636, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2637, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2638, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2639, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2640, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2641, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2642, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2643, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2644, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2645, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2646, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2647, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2648, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2649, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2650, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2651, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2652, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2653, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2654, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2655, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2656, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2657, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2658, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2659, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2660, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2661, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2662, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2663, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2664, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2665, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2666, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2667, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2668, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2669, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2670, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2671, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2672, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2673, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2674, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2675, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2676, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2677, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2678, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2679, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2680, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2681, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2682, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2683, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2684, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2685, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2686, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2687, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2688, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2689, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2690, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2691, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2692, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2693, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2694, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2695, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2696, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2697, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2698, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2699, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2700, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2701, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2702, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2703, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2704, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2705, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2706, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2707, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2708, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2709, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2710, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2711, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2712, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2713, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2714, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2715, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2716, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2717, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2718, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2719, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2720, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2721, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2722, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2723, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2724, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2725, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2726, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2727, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2728, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2729, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2730, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2731, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2732, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2733, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2734, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2735, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2736, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2737, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2738, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2739, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2740, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2741, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2742, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2743, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2744, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2745, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2746, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2747, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2748, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2749, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2750, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2751, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2752, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2753, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2754, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2755, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2756, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2757, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2758, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2759, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2760, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2761, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2762, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2763, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2764, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2765, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2766, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2767, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2768, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2769, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2770, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2771, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2772, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2773, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2774, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2775, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2776, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2777, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2778, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2779, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2780, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2781, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2782, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2783, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2784, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2785, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2786, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2787, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2788, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2789, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2790, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2791, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2792, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2793, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2794, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2795, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2796, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2797, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2798, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2799, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2800, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2801, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2802, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2803, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2804, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2805, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2806, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2807, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2808, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2809, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2810, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2811, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2812, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2813, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2814, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2815, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2816, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2817, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2818, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2819, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2820, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2821, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2822, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2823, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2824, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2825, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2826, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2827, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2828, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2829, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2830, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2831, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2832, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2833, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2834, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2835, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2836, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2837, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2838, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2839, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2840, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2841, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2842, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2843, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2844, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2845, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2846, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2847, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2848, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2849, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2850, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2851, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2852, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2853, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2854, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2855, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2856, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2857, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2858, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2859, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2860, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2861, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2862, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2863, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2864, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2865, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2866, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2867, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2868, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2869, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2870, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2871, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2872, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2873, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2874, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2875, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2876, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2877, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2878, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2879, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2880, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2881, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2882, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2883, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2884, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2885, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2886, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2887, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2888, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2889, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2890, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2891, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2892, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2893, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2894, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2895, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2896, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2897, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2898, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2899, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2900, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2901, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2902, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2903, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2904, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2905, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2906, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2907, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2908, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2909, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2910, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2911, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2912, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2913, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2914, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2915, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2916, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 2917, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -61534,16 +46944,11 @@ "states": [ { "id": 2918, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -61567,16 +46972,11 @@ "states": [ { "id": 2919, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61665,25 +47065,20 @@ ] }, "properties": [ - 2039405382, - 134247911, - 1482783304 + 957115720, + 2002076952, + 1676207191 ], "default_state_id": 2927, "states": [ { "id": 2920, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61691,17 +47086,12 @@ }, { "id": 2921, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61709,17 +47099,12 @@ }, { "id": 2922, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61727,17 +47112,12 @@ }, { "id": 2923, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61745,17 +47125,12 @@ }, { "id": 2924, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61763,17 +47138,12 @@ }, { "id": 2925, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61781,17 +47151,12 @@ }, { "id": 2926, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61799,17 +47164,12 @@ }, { "id": 2927, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61817,17 +47177,12 @@ }, { "id": 2928, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61835,17 +47190,12 @@ }, { "id": 2929, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61853,17 +47203,12 @@ }, { "id": 2930, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61871,17 +47216,12 @@ }, { "id": 2931, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61889,17 +47229,12 @@ }, { "id": 2932, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61907,17 +47242,12 @@ }, { "id": 2933, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61925,17 +47255,12 @@ }, { "id": 2934, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61943,17 +47268,12 @@ }, { "id": 2935, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61961,17 +47281,12 @@ }, { "id": 2936, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -61979,17 +47294,12 @@ }, { "id": 2937, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -62029,26 +47339,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 2949, "states": [ { "id": 2938, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -62056,17 +47361,12 @@ }, { "id": 2939, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -62074,17 +47374,12 @@ }, { "id": 2940, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -62093,17 +47388,12 @@ }, { "id": 2941, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -62112,17 +47402,12 @@ }, { "id": 2942, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -62131,17 +47416,12 @@ }, { "id": 2943, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -62150,17 +47430,12 @@ }, { "id": 2944, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -62169,17 +47444,12 @@ }, { "id": 2945, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -62188,17 +47458,12 @@ }, { "id": 2946, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -62207,17 +47472,12 @@ }, { "id": 2947, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -62226,17 +47486,12 @@ }, { "id": 2948, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -62244,17 +47499,12 @@ }, { "id": 2949, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -62262,17 +47512,12 @@ }, { "id": 2950, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -62281,17 +47526,12 @@ }, { "id": 2951, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -62300,17 +47540,12 @@ }, { "id": 2952, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -62319,17 +47554,12 @@ }, { "id": 2953, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -62338,17 +47568,12 @@ }, { "id": 2954, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -62356,17 +47581,12 @@ }, { "id": 2955, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -62374,17 +47594,12 @@ }, { "id": 2956, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -62392,17 +47607,12 @@ }, { "id": 2957, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -62410,17 +47620,12 @@ }, { "id": 2958, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -62428,17 +47633,12 @@ }, { "id": 2959, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -62446,17 +47646,12 @@ }, { "id": 2960, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -62465,17 +47660,12 @@ }, { "id": 2961, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -62484,17 +47674,12 @@ }, { "id": 2962, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -62503,17 +47688,12 @@ }, { "id": 2963, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -62522,17 +47702,12 @@ }, { "id": 2964, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -62541,17 +47716,12 @@ }, { "id": 2965, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -62560,17 +47730,12 @@ }, { "id": 2966, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -62579,17 +47744,12 @@ }, { "id": 2967, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -62598,17 +47758,12 @@ }, { "id": 2968, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -62616,17 +47771,12 @@ }, { "id": 2969, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -62634,17 +47784,12 @@ }, { "id": 2970, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -62653,17 +47798,12 @@ }, { "id": 2971, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -62672,17 +47812,12 @@ }, { "id": 2972, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -62691,17 +47826,12 @@ }, { "id": 2973, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -62710,17 +47840,12 @@ }, { "id": 2974, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -62728,17 +47853,12 @@ }, { "id": 2975, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -62746,17 +47866,12 @@ }, { "id": 2976, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -62764,17 +47879,12 @@ }, { "id": 2977, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -62782,17 +47892,12 @@ }, { "id": 2978, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -62800,17 +47905,12 @@ }, { "id": 2979, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -62818,17 +47918,12 @@ }, { "id": 2980, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -62837,17 +47932,12 @@ }, { "id": 2981, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -62856,17 +47946,12 @@ }, { "id": 2982, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -62875,17 +47960,12 @@ }, { "id": 2983, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -62894,17 +47974,12 @@ }, { "id": 2984, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -62913,17 +47988,12 @@ }, { "id": 2985, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -62932,17 +48002,12 @@ }, { "id": 2986, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -62951,17 +48016,12 @@ }, { "id": 2987, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -62970,17 +48030,12 @@ }, { "id": 2988, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -62988,17 +48043,12 @@ }, { "id": 2989, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -63006,17 +48056,12 @@ }, { "id": 2990, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -63025,17 +48070,12 @@ }, { "id": 2991, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -63044,17 +48084,12 @@ }, { "id": 2992, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -63063,17 +48098,12 @@ }, { "id": 2993, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -63082,17 +48112,12 @@ }, { "id": 2994, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -63100,17 +48125,12 @@ }, { "id": 2995, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -63118,17 +48138,12 @@ }, { "id": 2996, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -63136,17 +48151,12 @@ }, { "id": 2997, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -63154,17 +48164,12 @@ }, { "id": 2998, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -63172,17 +48177,12 @@ }, { "id": 2999, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -63190,17 +48190,12 @@ }, { "id": 3000, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -63209,17 +48204,12 @@ }, { "id": 3001, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -63228,17 +48218,12 @@ }, { "id": 3002, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -63247,17 +48232,12 @@ }, { "id": 3003, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -63266,17 +48246,12 @@ }, { "id": 3004, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -63285,17 +48260,12 @@ }, { "id": 3005, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -63304,17 +48274,12 @@ }, { "id": 3006, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -63323,17 +48288,12 @@ }, { "id": 3007, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -63342,17 +48302,12 @@ }, { "id": 3008, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -63360,17 +48315,12 @@ }, { "id": 3009, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -63378,17 +48328,12 @@ }, { "id": 3010, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -63397,17 +48342,12 @@ }, { "id": 3011, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -63416,17 +48356,12 @@ }, { "id": 3012, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -63435,17 +48370,12 @@ }, { "id": 3013, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -63454,17 +48384,12 @@ }, { "id": 3014, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -63472,17 +48397,12 @@ }, { "id": 3015, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -63490,17 +48410,12 @@ }, { "id": 3016, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -63508,17 +48423,12 @@ }, { "id": 3017, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -63567,25 +48477,20 @@ ] }, "properties": [ - -1870206692, - -547018622, - 795783032 + 1877134791, + 1490079803, + 989206919 ], "default_state_id": 3019, "states": [ { "id": 3018, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63593,17 +48498,12 @@ }, { "id": 3019, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63611,17 +48511,12 @@ }, { "id": 3020, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -63629,17 +48524,12 @@ }, { "id": 3021, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -63647,17 +48537,12 @@ }, { "id": 3022, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -63665,17 +48550,12 @@ }, { "id": 3023, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -63683,17 +48563,12 @@ }, { "id": 3024, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63701,17 +48576,12 @@ }, { "id": 3025, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63719,17 +48589,12 @@ }, { "id": 3026, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -63737,17 +48602,12 @@ }, { "id": 3027, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -63755,17 +48615,12 @@ }, { "id": 3028, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -63773,17 +48628,12 @@ }, { "id": 3029, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -63791,17 +48641,12 @@ }, { "id": 3030, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63809,17 +48654,12 @@ }, { "id": 3031, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63827,17 +48667,12 @@ }, { "id": 3032, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -63845,17 +48680,12 @@ }, { "id": 3033, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -63863,17 +48693,12 @@ }, { "id": 3034, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -63881,17 +48706,12 @@ }, { "id": 3035, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -63899,17 +48719,12 @@ }, { "id": 3036, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63917,17 +48732,12 @@ }, { "id": 3037, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -63935,17 +48745,12 @@ }, { "id": 3038, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -63953,17 +48758,12 @@ }, { "id": 3039, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -63971,17 +48771,12 @@ }, { "id": 3040, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -63989,17 +48784,12 @@ }, { "id": 3041, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -64039,18156 +48829,11676 @@ ] }, "properties": [ - -1743221798, - 1415727058, - 268053108, - 1558962186, - -1726479256 + 1497542719, + 361524279, + -376795061, + 504759407, + 1514285261 ], "default_state_id": 4202, "states": [ { "id": 3042, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3043, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3044, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3045, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3046, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3047, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3048, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3049, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3050, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3051, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3052, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3053, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3054, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3055, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3056, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3057, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3058, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3059, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3060, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3061, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3062, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3063, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3064, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3065, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3066, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3067, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3068, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3069, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3070, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3071, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3072, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3073, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3074, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3075, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3076, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3077, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3078, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3079, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3080, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3081, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3082, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3083, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3084, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3085, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3086, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3087, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3088, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3089, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3090, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3091, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3092, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3093, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3094, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3095, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3096, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3097, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3098, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3099, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3100, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3101, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3102, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3103, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3104, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3105, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3106, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3107, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3108, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3109, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3110, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3111, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3112, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3113, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3114, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3115, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3116, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3117, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3118, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3119, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3120, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3121, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3122, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3123, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3124, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3125, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3126, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3127, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3128, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3129, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3130, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3131, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3132, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3133, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3134, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3135, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3136, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3137, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3138, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3139, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3140, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3141, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3142, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3143, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3144, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3145, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3146, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3147, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3148, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3149, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3150, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3151, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3152, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3153, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3154, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3155, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3156, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3157, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3158, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3159, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3160, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3161, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3162, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3163, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3164, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3165, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3166, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3167, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3168, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3169, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3170, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3171, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3172, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3173, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3174, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3175, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3176, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3177, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3178, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3179, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3180, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3181, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3182, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3183, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3184, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3185, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3186, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3187, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3188, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3189, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3190, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3191, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3192, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3193, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3194, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3195, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3196, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3197, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3198, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3199, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3200, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3201, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3202, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3203, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3204, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3205, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3206, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3207, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3208, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3209, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3210, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3211, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3212, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3213, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3214, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3215, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3216, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3217, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3218, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3219, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3220, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3221, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3222, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3223, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3224, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3225, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3226, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3227, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3228, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3229, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3230, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3231, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3232, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3233, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3234, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3235, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3236, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3237, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3238, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3239, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3240, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3241, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3242, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3243, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3244, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3245, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3246, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3247, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3248, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3249, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3250, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3251, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3252, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3253, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3254, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3255, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3256, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3257, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3258, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3259, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3260, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3261, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3262, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3263, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3264, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3265, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3266, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3267, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3268, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3269, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3270, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3271, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3272, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3273, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3274, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3275, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3276, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3277, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3278, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3279, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3280, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3281, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3282, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3283, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3284, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3285, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3286, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3287, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3288, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3289, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3290, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3291, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3292, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3293, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3294, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3295, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3296, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3297, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3298, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3299, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3300, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3301, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3302, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3303, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3304, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3305, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3306, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3307, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3308, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3309, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3310, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3311, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3312, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3313, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3314, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3315, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3316, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3317, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3318, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3319, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3320, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3321, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3322, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3323, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3324, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3325, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3326, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3327, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3328, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3329, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3330, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3331, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3332, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3333, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3334, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3335, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3336, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3337, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3338, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3339, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3340, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3341, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3342, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3343, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3344, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3345, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3346, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3347, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3348, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3349, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3350, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3351, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3352, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3353, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3354, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3355, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3356, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3357, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3358, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3359, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3360, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3361, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3362, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3363, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3364, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3365, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3366, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3367, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3368, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3369, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3370, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3371, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3372, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3373, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3374, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3375, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3376, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3377, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3378, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3379, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3380, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3381, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3382, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3383, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3384, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3385, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3386, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3387, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3388, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3389, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3390, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3391, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3392, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3393, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3394, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3395, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3396, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3397, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3398, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3399, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3400, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3401, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3406, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3407, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3408, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3409, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3410, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3411, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3412, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3413, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3414, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3415, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3416, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3417, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3418, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3419, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3420, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3421, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3422, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3423, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3424, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3425, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3426, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3427, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3428, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3429, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3430, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3431, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3432, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3433, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3434, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3435, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3436, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3437, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3438, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3439, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3440, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3441, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3442, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3443, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3444, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3445, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3446, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3447, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3448, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3449, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3450, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3451, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3452, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3453, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3454, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3455, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3456, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3457, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3458, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3459, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3460, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3461, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3462, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3463, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3464, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3465, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3466, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3467, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3468, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3469, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3470, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3471, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3472, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3473, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3474, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3475, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3476, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3477, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3478, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3479, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3480, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3481, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3482, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3483, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3484, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3485, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3486, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3487, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3488, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3489, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3490, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3491, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3492, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3493, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3494, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3495, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3496, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3497, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3498, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3499, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3500, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3501, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3502, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3503, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3504, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3505, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3506, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3507, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3508, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3509, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3510, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3511, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3512, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3513, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3514, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3515, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3516, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3517, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3518, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3519, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3520, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3521, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3522, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3523, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3524, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3525, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3526, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3527, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3528, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3529, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3530, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3531, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3532, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3533, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3534, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3535, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3536, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3537, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3538, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3539, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3540, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3541, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3542, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3543, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3544, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3545, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3546, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3547, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3548, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3549, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3550, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3551, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3552, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3553, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3554, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3555, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3556, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3557, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3558, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3559, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3560, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3561, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3562, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3563, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3564, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3565, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3566, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3567, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3568, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3569, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3570, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3571, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3572, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3573, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3574, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3575, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3576, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3577, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3578, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3579, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3580, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3581, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3582, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3583, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3584, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3585, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3586, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3587, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3588, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3589, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3590, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3591, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3592, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3593, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3594, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3595, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3596, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3597, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3598, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3599, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3600, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3601, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3602, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3603, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3604, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3605, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3606, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3607, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3608, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3609, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3610, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3611, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3612, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3613, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3614, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3615, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3616, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3617, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3618, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3619, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3620, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3621, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3622, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3623, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3624, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3625, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3626, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3627, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3628, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3629, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3630, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3631, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3632, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3633, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3634, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3635, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3636, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3637, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3638, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3639, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3640, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3641, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3642, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3643, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3644, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3645, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3646, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3647, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3648, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3649, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3650, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3651, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3652, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3653, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3654, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3655, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3656, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3657, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3658, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3659, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3660, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3661, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3662, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3663, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3664, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3665, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3666, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3667, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3668, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3669, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3670, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3671, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3672, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3673, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3674, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3675, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3676, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3677, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3678, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3679, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3680, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3681, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3682, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3683, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3684, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3685, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3686, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3687, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3688, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3689, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3690, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3691, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3692, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3693, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3694, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3695, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3696, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3697, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3698, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3699, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3700, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3701, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3702, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3703, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3704, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3705, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3706, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3707, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3708, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3709, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3710, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3711, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3712, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3713, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3714, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3715, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3716, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3717, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3718, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3719, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3720, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3721, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3722, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3723, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3724, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3725, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3726, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3727, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3728, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3729, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3730, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3731, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3732, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3733, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3734, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3735, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3736, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3737, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3738, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3739, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3740, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3741, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3742, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3743, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3744, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3745, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3746, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3747, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3748, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3749, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3750, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3751, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3752, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3753, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3754, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3755, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3756, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3757, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3758, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3759, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3760, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3761, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3762, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3763, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3764, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3765, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3766, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3767, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3768, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3769, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3770, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3771, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3772, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3773, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3774, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3775, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3776, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3777, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3778, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3779, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3780, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3781, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3782, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3783, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3784, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3785, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3786, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3787, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3788, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3789, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3790, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3791, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3792, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3793, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3794, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3795, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3796, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3797, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3798, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3799, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3800, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3801, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3802, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3803, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3804, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3805, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3806, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3807, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3808, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3809, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3810, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3811, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3812, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3813, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3814, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3815, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3816, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3817, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3818, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3819, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3820, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3821, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3822, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3823, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3824, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3825, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3826, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3827, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3828, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3829, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3830, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3831, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3832, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3833, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3834, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3835, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3836, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3837, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3838, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3839, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3840, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3841, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3842, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3843, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3844, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3845, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3846, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3847, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3848, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3849, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3850, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3851, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3852, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3853, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3854, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3855, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3856, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3857, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3858, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3859, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3860, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3861, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3862, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3863, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3864, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3865, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3866, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3867, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3868, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3869, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3870, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3871, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3872, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3873, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3874, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3875, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3876, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3877, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3878, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3879, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3880, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3881, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3882, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3883, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3884, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3885, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3886, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3887, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3888, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3889, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3890, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3891, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3892, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3893, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3894, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3895, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3896, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3897, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3898, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3899, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3900, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3901, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3902, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3903, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3904, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3905, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3906, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3907, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3908, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3909, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3910, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3911, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3912, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3913, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3914, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3915, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3916, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3917, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3918, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3919, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3920, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3921, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3922, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3923, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3924, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3925, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3926, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3927, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3928, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3929, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3930, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3931, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3932, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3933, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3934, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3935, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3936, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3937, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3938, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3939, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3940, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3941, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3942, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3943, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3944, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3945, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3946, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3947, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3948, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3949, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3950, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3951, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3952, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3953, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3954, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3955, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3956, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3957, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3958, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3959, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3960, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3961, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3962, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3963, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3964, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3965, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3966, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3967, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3968, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3969, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3970, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3971, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3972, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3973, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3974, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3975, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3976, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3977, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3978, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3979, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3980, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3981, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3982, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3983, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3984, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3985, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3986, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3987, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3988, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3989, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3990, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3991, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3992, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3993, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3994, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3995, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3996, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3997, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3998, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 3999, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4000, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4001, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4002, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4003, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4004, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4005, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4006, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4007, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4008, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4009, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4010, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4011, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4012, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4013, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4014, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4015, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4016, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4017, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4018, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4019, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4020, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4021, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4022, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4023, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4024, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4025, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4026, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4027, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4028, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4029, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4030, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4031, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4032, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4033, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4034, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4035, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4036, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4037, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4038, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4039, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4040, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4041, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4042, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4043, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4044, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4045, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4046, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4047, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4048, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4049, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4050, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4051, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4052, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4053, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4054, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4055, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4056, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4057, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4058, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4059, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4060, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4061, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4062, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4063, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4064, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4065, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4066, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4067, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4068, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4069, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4070, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4071, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4072, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4073, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4074, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4075, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4076, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4077, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4078, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4079, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4080, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4081, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4082, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4083, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4084, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4085, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4086, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4087, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4088, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4089, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4090, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4091, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4092, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4093, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4094, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4095, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4096, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4097, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4098, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4099, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4100, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4101, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4102, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4103, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4104, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4105, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4106, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4107, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4108, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4109, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4110, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4111, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4112, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4113, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4114, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4115, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4116, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4117, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4118, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4119, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4120, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4121, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4122, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4123, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4124, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4125, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4126, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4127, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4128, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4129, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4130, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4131, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4132, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4133, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4134, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4135, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4136, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4137, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4138, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4139, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4140, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4141, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4142, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4143, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4144, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4145, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4146, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4147, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4148, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4149, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4150, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4151, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4152, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4153, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4154, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4155, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4156, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4157, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4158, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4159, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4160, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4161, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4162, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4163, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4164, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4165, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4166, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4167, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4168, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4169, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4170, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4171, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4172, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4173, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4174, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4175, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4176, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4177, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4178, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4179, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4180, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4181, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4182, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4183, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4184, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4185, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4186, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4187, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4188, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4189, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4190, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4191, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4192, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4193, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4194, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4195, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4196, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4197, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4198, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4199, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4200, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4201, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4202, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4203, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4204, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4205, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4206, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4207, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4208, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4209, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4210, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4211, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4212, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4213, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4214, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4215, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4216, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4217, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4218, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4219, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4220, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4221, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4222, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4223, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4224, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4225, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4226, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4227, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4228, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4229, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4230, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4231, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4232, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4233, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4234, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4235, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4236, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4237, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4238, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4239, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4240, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4241, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4242, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4243, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4244, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4245, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4246, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4247, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4248, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4249, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4250, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4251, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4252, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4253, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4254, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4255, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4256, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4257, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4258, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4259, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4260, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4261, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4262, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4263, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4264, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4265, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4266, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4267, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4268, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4269, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4270, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4271, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4272, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4273, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4274, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4275, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4276, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4277, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4278, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4279, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4280, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4281, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4282, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4283, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4284, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4285, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4286, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4287, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4288, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4289, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4290, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4291, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4292, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4293, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4294, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4295, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4296, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4297, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4298, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4299, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4300, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4301, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4302, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4303, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4304, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4305, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4306, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4307, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4308, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4309, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4310, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4311, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4312, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4313, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4314, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4315, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4316, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4317, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4318, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4319, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4320, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4321, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4322, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4323, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4324, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4325, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4326, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4327, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4328, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4329, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4330, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4331, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4332, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4333, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4334, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4335, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4336, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4337, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -82268,17 +60578,12 @@ "states": [ { "id": 4338, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -82360,17 +60665,12 @@ "states": [ { "id": 4339, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -82413,17 +60713,12 @@ "states": [ { "id": 4340, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -82466,17 +60761,12 @@ "states": [ { "id": 4341, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -82563,120 +60853,80 @@ ] }, "properties": [ - -503090506 + -1147938675 ], "default_state_id": 4342, "states": [ { "id": 4342, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4343, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4344, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4345, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4346, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4347, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4348, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4349, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -82713,142 +60963,102 @@ ] }, "properties": [ - -1964986603 + 1685132524 ], "default_state_id": 4350, "states": [ { "id": 4350, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4351, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4352, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4353, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4354, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4355, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4356, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] }, { "id": 4357, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] @@ -82896,24 +61106,19 @@ ] }, "properties": [ - -1870206692, - -246020938 + 1877134791, + -52597051 ], "default_state_id": 4359, "states": [ { "id": 4358, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -82921,17 +61126,12 @@ }, { "id": 4359, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -82939,17 +61139,12 @@ }, { "id": 4360, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -82957,17 +61152,12 @@ }, { "id": 4361, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -82975,17 +61165,12 @@ }, { "id": 4362, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -82993,17 +61178,12 @@ }, { "id": 4363, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -83011,17 +61191,12 @@ }, { "id": 4364, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -83029,17 +61204,12 @@ }, { "id": 4365, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -83079,488 +61249,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4367, "states": [ { "id": 4366, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4367, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4368, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4369, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4370, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4371, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4372, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4373, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4374, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4375, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4376, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4377, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4378, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4379, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4380, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4381, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4382, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4383, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4384, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4385, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4386, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4387, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4388, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4389, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4390, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4391, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4392, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4393, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4394, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4395, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4396, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4397, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -83598,488 +61608,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4399, "states": [ { "id": 4398, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4399, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4400, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4401, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4402, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4403, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4404, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4405, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4406, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4407, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4408, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4409, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4410, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4411, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4412, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4413, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4414, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4415, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4416, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4417, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4418, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4419, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4420, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4421, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4422, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4423, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4424, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4425, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4426, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4427, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4428, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4429, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -84117,488 +61967,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4431, "states": [ { "id": 4430, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4431, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4432, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4433, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4434, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4435, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4436, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4437, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4438, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4439, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4440, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4441, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4442, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4443, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4444, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4445, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4446, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4447, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4448, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4449, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4450, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4451, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4452, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4453, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4454, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4455, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4456, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4457, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4458, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4459, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4460, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4461, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -84636,488 +62326,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4463, "states": [ { "id": 4462, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4463, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4464, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4465, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4466, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4467, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4468, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4469, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4470, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4471, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4472, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4473, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4474, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4475, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4476, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4477, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4478, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4479, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4480, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4481, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4482, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4483, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4484, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4485, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4486, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4487, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4488, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4489, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4490, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4491, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4492, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4493, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -85155,488 +62685,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4495, "states": [ { "id": 4494, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4495, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4496, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4497, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4498, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4499, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4500, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4501, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4502, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4503, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4504, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4505, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4506, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4507, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4508, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4509, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4510, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4511, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4512, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4513, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4514, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4515, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4516, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4517, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4518, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4519, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4520, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4521, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4522, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4523, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4524, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4525, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -85674,488 +63044,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4527, "states": [ { "id": 4526, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4527, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4528, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4529, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4530, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4531, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4532, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4533, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4534, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4535, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4536, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4537, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4538, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4539, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4540, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4541, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4542, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4543, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4544, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4545, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4546, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4547, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4548, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4549, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4550, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4551, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4552, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4553, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4554, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4555, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4556, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4557, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -86193,488 +63403,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4559, "states": [ { "id": 4558, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4559, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4560, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4561, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4562, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4563, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4564, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4565, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4566, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4567, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4568, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4569, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4570, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4571, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4572, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4573, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4574, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4575, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4576, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4577, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4578, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4579, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4580, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4581, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4582, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4583, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4584, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4585, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4586, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4587, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4588, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4589, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -86712,488 +63762,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4591, "states": [ { "id": 4590, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4591, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4592, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4593, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4594, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4595, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4596, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4597, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4598, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4599, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4600, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4601, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4602, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4603, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4604, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4605, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4606, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4607, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4608, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4609, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4610, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4611, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4612, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4613, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4614, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4615, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4616, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4617, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4618, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4619, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4620, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4621, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -87231,488 +64121,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4623, "states": [ { "id": 4622, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4623, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4624, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4625, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4626, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4627, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4628, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4629, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4630, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4631, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4632, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4633, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4634, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4635, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4636, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4637, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4638, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4639, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4640, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4641, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4642, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4643, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4644, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4645, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4646, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4647, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4648, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4649, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4650, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4651, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4652, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4653, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -87750,488 +64480,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 4655, "states": [ { "id": 4654, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4655, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4656, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4657, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4658, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4659, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4660, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4661, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4662, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4663, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4664, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4665, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4666, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4667, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4668, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4669, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4670, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4671, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4672, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4673, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4674, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4675, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4676, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4677, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4678, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4679, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4680, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4681, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4682, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4683, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4684, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4685, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -88278,1034 +64848,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 4697, "states": [ { "id": 4686, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4687, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4688, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4689, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4690, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4691, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4692, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4693, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4694, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4695, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4696, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4697, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4698, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4699, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4700, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4701, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4702, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4703, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4704, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4705, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4706, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4707, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4708, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4709, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4710, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4711, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4712, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4713, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4714, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4715, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4716, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4717, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4718, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4719, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4720, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4721, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4722, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4723, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4724, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4725, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4726, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4727, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4728, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4729, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4730, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4731, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4732, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4733, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4734, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4735, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4736, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4737, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4738, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4739, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4740, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4741, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4742, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4743, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4744, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4745, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4746, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4747, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4748, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4749, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -89344,135 +65594,95 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4751, "states": [ { "id": 4750, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4751, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 4752, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4753, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 4754, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4755, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 4756, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 4757, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -89511,289 +65721,189 @@ ] }, "properties": [ - 513605714, - 795783032 + 1362710359, + 989206919 ], "default_state_id": 4759, "states": [ { "id": 4758, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4759, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4760, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4761, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4762, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4763, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4764, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4765, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4766, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4767, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4768, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4769, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4770, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4771, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4772, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4773, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4774, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4775, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4776, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 4777, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -89830,26 +65940,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 4789, "states": [ { "id": 4778, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -89857,17 +65962,12 @@ }, { "id": 4779, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -89875,17 +65975,12 @@ }, { "id": 4780, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -89894,17 +65989,12 @@ }, { "id": 4781, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -89913,17 +66003,12 @@ }, { "id": 4782, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -89932,17 +66017,12 @@ }, { "id": 4783, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -89951,17 +66031,12 @@ }, { "id": 4784, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -89970,17 +66045,12 @@ }, { "id": 4785, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -89989,17 +66059,12 @@ }, { "id": 4786, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -90008,17 +66073,12 @@ }, { "id": 4787, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -90027,17 +66087,12 @@ }, { "id": 4788, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -90045,17 +66100,12 @@ }, { "id": 4789, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -90063,17 +66113,12 @@ }, { "id": 4790, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90082,17 +66127,12 @@ }, { "id": 4791, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90101,17 +66141,12 @@ }, { "id": 4792, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -90120,17 +66155,12 @@ }, { "id": 4793, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -90139,17 +66169,12 @@ }, { "id": 4794, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -90157,17 +66182,12 @@ }, { "id": 4795, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -90175,17 +66195,12 @@ }, { "id": 4796, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -90193,17 +66208,12 @@ }, { "id": 4797, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -90211,17 +66221,12 @@ }, { "id": 4798, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -90229,17 +66234,12 @@ }, { "id": 4799, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -90247,17 +66247,12 @@ }, { "id": 4800, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -90266,17 +66261,12 @@ }, { "id": 4801, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -90285,17 +66275,12 @@ }, { "id": 4802, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -90304,17 +66289,12 @@ }, { "id": 4803, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -90323,17 +66303,12 @@ }, { "id": 4804, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -90342,17 +66317,12 @@ }, { "id": 4805, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -90361,17 +66331,12 @@ }, { "id": 4806, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -90380,17 +66345,12 @@ }, { "id": 4807, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -90399,17 +66359,12 @@ }, { "id": 4808, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -90417,17 +66372,12 @@ }, { "id": 4809, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -90435,17 +66385,12 @@ }, { "id": 4810, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -90454,17 +66399,12 @@ }, { "id": 4811, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -90473,17 +66413,12 @@ }, { "id": 4812, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90492,17 +66427,12 @@ }, { "id": 4813, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90511,17 +66441,12 @@ }, { "id": 4814, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -90529,17 +66454,12 @@ }, { "id": 4815, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -90547,17 +66467,12 @@ }, { "id": 4816, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -90565,17 +66480,12 @@ }, { "id": 4817, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -90583,17 +66493,12 @@ }, { "id": 4818, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -90601,17 +66506,12 @@ }, { "id": 4819, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -90619,17 +66519,12 @@ }, { "id": 4820, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -90638,17 +66533,12 @@ }, { "id": 4821, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -90657,17 +66547,12 @@ }, { "id": 4822, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -90676,17 +66561,12 @@ }, { "id": 4823, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -90695,17 +66575,12 @@ }, { "id": 4824, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -90714,17 +66589,12 @@ }, { "id": 4825, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -90733,17 +66603,12 @@ }, { "id": 4826, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -90752,17 +66617,12 @@ }, { "id": 4827, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -90771,17 +66631,12 @@ }, { "id": 4828, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -90789,17 +66644,12 @@ }, { "id": 4829, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -90807,17 +66657,12 @@ }, { "id": 4830, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90826,17 +66671,12 @@ }, { "id": 4831, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90845,17 +66685,12 @@ }, { "id": 4832, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90864,17 +66699,12 @@ }, { "id": 4833, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -90883,17 +66713,12 @@ }, { "id": 4834, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -90901,17 +66726,12 @@ }, { "id": 4835, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -90919,17 +66739,12 @@ }, { "id": 4836, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -90937,17 +66752,12 @@ }, { "id": 4837, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -90955,17 +66765,12 @@ }, { "id": 4838, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -90973,17 +66778,12 @@ }, { "id": 4839, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -90991,17 +66791,12 @@ }, { "id": 4840, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -91010,17 +66805,12 @@ }, { "id": 4841, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -91029,17 +66819,12 @@ }, { "id": 4842, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -91048,17 +66833,12 @@ }, { "id": 4843, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -91067,17 +66847,12 @@ }, { "id": 4844, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -91086,17 +66861,12 @@ }, { "id": 4845, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -91105,17 +66875,12 @@ }, { "id": 4846, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -91124,17 +66889,12 @@ }, { "id": 4847, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -91143,17 +66903,12 @@ }, { "id": 4848, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -91161,17 +66916,12 @@ }, { "id": 4849, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -91179,17 +66929,12 @@ }, { "id": 4850, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -91198,17 +66943,12 @@ }, { "id": 4851, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -91217,17 +66957,12 @@ }, { "id": 4852, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -91236,17 +66971,12 @@ }, { "id": 4853, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -91255,17 +66985,12 @@ }, { "id": 4854, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -91273,17 +66998,12 @@ }, { "id": 4855, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -91291,17 +67011,12 @@ }, { "id": 4856, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -91309,17 +67024,12 @@ }, { "id": 4857, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -91359,128 +67069,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4859, "states": [ { "id": 4858, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4859, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4860, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4861, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4862, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4863, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4864, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4865, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -91518,128 +67188,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4867, "states": [ { "id": 4866, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4867, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4868, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4869, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4870, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4871, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4872, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4873, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -91677,128 +67307,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4875, "states": [ { "id": 4874, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4875, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4876, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4877, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4878, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4879, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4880, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4881, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -91836,128 +67426,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4883, "states": [ { "id": 4882, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4883, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4884, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4885, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4886, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4887, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4888, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4889, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -91995,128 +67545,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4891, "states": [ { "id": 4890, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4891, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4892, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4893, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4894, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4895, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4896, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4897, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -92154,128 +67664,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4899, "states": [ { "id": 4898, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4899, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4900, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4901, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4902, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4903, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4904, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4905, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -92313,128 +67783,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4907, "states": [ { "id": 4906, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4907, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4908, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4909, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4910, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4911, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4912, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4913, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -92472,128 +67902,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4915, "states": [ { "id": 4914, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4915, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4916, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4917, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4918, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4919, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4920, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4921, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -92631,128 +68021,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4923, "states": [ { "id": 4922, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4923, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4924, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4925, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4926, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4927, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4928, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4929, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -92790,128 +68140,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 4931, "states": [ { "id": 4930, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4931, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4932, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4933, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4934, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4935, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4936, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 4937, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -92949,969 +68259,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 4971, "states": [ { "id": 4938, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4939, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4940, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4941, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4942, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4943, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4944, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4945, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4946, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4947, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4948, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4949, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4950, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4951, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4952, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4953, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4954, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4955, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4956, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4957, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4958, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4959, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4960, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4961, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4962, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4963, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4964, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4965, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4966, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4967, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4968, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4969, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4970, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4971, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4972, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4973, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4974, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4975, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4976, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4977, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4978, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4979, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4980, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4981, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4982, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4983, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4984, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4985, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4986, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4987, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4988, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4989, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4990, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4991, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4992, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4993, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4994, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4995, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4996, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4997, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4998, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 4999, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5000, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5001, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -93949,969 +68939,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5035, "states": [ { "id": 5002, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5003, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5004, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5005, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5006, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5007, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5008, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5009, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5010, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5011, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5012, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5013, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5014, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5015, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5016, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5017, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5018, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5019, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5020, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5021, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5022, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5023, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5024, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5025, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5026, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5027, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5028, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5029, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5030, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5031, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5032, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5033, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5034, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5035, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5036, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5037, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5038, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5039, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5040, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5041, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5042, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5043, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5044, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5045, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5046, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5047, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5048, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5049, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5050, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5051, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5052, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5053, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5054, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5055, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5056, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5057, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5058, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5059, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5060, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5061, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5062, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5063, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5064, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5065, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -94949,969 +69619,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5099, "states": [ { "id": 5066, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5067, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5068, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5069, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5070, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5071, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5072, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5073, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5074, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5075, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5076, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5077, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5078, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5079, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5080, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5081, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5082, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5083, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5084, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5085, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5086, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5087, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5088, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5089, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5090, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5091, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5092, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5093, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5094, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5095, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5096, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5097, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5098, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5099, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5100, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5101, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5102, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5103, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5104, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5105, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5106, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5107, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5108, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5109, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5110, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5111, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5112, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5113, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5114, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5115, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5116, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5117, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5118, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5119, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5120, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5121, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5122, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5123, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5124, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5125, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5126, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5127, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5128, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5129, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -95949,969 +70299,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5163, "states": [ { "id": 5130, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5131, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5132, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5133, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5134, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5135, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5136, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5137, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5138, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5139, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5140, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5141, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5142, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5143, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5144, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5145, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5146, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5147, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5148, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5149, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5150, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5151, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5152, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5153, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5154, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5155, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5156, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5157, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5158, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5159, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5160, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5161, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5162, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5163, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5164, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5165, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5166, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5167, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5168, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5169, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5170, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5171, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5172, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5173, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5174, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5175, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5176, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5177, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5178, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5179, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5180, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5181, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5182, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5183, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5184, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5185, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5186, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5187, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5188, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5189, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5190, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5191, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5192, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5193, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -96949,969 +70979,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5227, "states": [ { "id": 5194, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5195, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5196, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5197, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5198, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5199, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5200, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5201, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5202, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5203, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5204, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5205, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5206, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5207, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5208, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5209, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5210, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5211, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5212, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5213, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5214, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5215, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5216, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5217, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5218, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5219, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5220, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5221, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5222, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5223, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5224, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5225, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5226, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5227, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5228, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5229, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5230, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5231, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5232, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5233, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5234, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5235, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5236, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5237, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5238, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5239, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5240, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5241, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5242, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5243, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5244, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5245, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5246, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5247, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5248, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5249, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5250, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5251, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5252, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5253, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5254, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5255, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5256, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5257, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -97949,969 +71659,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5291, "states": [ { "id": 5258, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5259, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5260, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5261, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5262, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5263, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5264, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5265, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5266, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5267, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5268, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5269, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5270, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5271, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5272, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5273, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5274, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5275, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5276, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5277, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5278, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5279, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5280, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5281, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5282, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5283, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5284, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5285, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5286, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5287, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5288, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5289, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5290, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5291, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5292, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5293, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5294, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5295, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5296, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5297, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5298, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5299, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5300, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5301, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5302, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5303, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5304, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5305, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5306, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5307, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5308, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5309, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5310, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5311, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5312, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5313, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5314, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5315, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5316, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5317, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5318, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5319, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5320, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5321, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -98949,969 +72339,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5355, "states": [ { "id": 5322, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5323, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5324, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5325, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5326, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5327, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5328, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5329, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5330, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5331, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5332, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5333, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5334, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5335, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5336, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5337, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5338, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5339, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5340, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5341, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5342, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5343, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5344, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5345, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5346, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5347, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5348, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5349, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5350, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5351, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5352, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5353, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5354, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5355, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5356, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5357, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5358, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5359, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5360, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5361, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5362, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5363, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5364, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5365, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5366, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5367, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5368, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5369, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5370, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5371, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5372, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5373, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5374, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5375, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5376, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5377, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5378, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5379, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5380, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5381, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5382, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5383, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5384, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5385, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -99949,969 +73019,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5419, "states": [ { "id": 5386, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5387, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5388, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5389, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5390, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5391, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5392, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5393, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5394, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5395, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5396, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5397, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5398, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5399, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5400, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5401, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5402, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5403, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5404, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5405, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5406, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5407, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5408, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5409, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5410, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5411, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5412, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5413, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5414, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5415, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5416, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5417, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5418, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5419, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5420, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5421, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5422, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5423, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5424, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5425, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5426, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5427, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5428, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5429, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5430, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5431, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5432, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5433, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5434, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5435, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5436, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5437, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5438, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5439, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5440, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5441, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5442, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5443, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5444, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5445, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5446, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5447, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5448, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5449, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -100949,969 +73699,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5483, "states": [ { "id": 5450, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5451, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5452, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5453, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5454, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5455, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5456, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5457, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5458, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5459, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5460, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5461, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5462, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5463, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5464, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5465, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5466, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5467, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5468, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5469, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5470, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5471, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5472, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5473, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5474, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5475, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5476, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5477, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5478, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5479, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5480, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5481, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5482, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5483, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5484, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5485, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5486, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5487, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5488, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5489, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5490, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5491, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5492, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5493, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5494, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5495, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5496, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5497, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5498, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5499, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5500, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5501, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5502, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5503, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5504, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5505, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5506, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5507, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5508, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5509, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5510, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5511, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5512, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5513, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -101949,969 +74379,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5547, "states": [ { "id": 5514, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5515, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5516, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5517, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5518, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5519, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5520, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5521, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5522, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5523, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5524, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5525, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5526, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5527, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5528, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5529, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5530, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5531, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5532, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5533, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5534, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5535, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5536, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5537, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5538, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5539, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5540, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5541, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5542, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5543, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5544, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5545, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5546, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5547, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5548, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5549, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5550, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5551, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5552, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5553, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5554, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5555, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5556, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5557, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5558, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5559, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5560, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5561, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5562, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5563, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5564, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5565, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5566, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5567, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5568, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5569, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5570, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5571, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5572, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5573, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5574, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5575, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5576, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5577, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -102949,969 +75059,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5611, "states": [ { "id": 5578, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5579, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5580, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5581, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5582, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5583, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5584, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5585, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5586, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5587, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5588, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5589, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5590, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5591, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5592, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5593, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5594, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5595, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5596, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5597, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5598, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5599, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5600, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5601, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5602, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5603, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5604, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5605, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5606, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5607, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5608, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5609, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5610, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5611, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5612, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5613, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5614, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5615, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5616, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5617, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5618, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5619, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5620, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5621, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5622, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5623, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5624, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5625, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5626, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5627, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5628, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5629, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5630, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5631, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5632, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5633, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5634, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5635, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5636, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5637, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5638, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5639, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5640, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5641, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -103949,969 +75739,649 @@ ] }, "properties": [ - 292609987, - 1078043, - 795783032 + 486033874, + -643770126, + 989206919 ], "default_state_id": 5675, "states": [ { "id": 5642, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5643, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5644, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5645, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5646, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5647, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5648, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5649, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5650, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5651, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5652, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5653, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5654, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5655, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5656, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5657, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5658, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5659, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5660, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5661, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5662, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5663, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5664, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5665, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5666, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5667, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5668, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5669, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5670, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5671, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5672, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5673, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5674, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5675, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5676, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5677, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5678, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5679, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5680, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5681, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5682, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5683, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5684, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5685, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5686, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5687, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5688, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5689, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5690, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5691, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5692, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5693, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5694, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5695, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5696, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5697, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5698, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5699, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5700, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5701, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5702, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5703, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5704, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 }, { "id": 5705, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 8 } @@ -104949,23 +76419,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5707, "states": [ { "id": 5706, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -104973,16 +76438,11 @@ }, { "id": 5707, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -104990,16 +76450,11 @@ }, { "id": 5708, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105007,16 +76462,11 @@ }, { "id": 5709, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105024,16 +76474,11 @@ }, { "id": 5710, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105041,16 +76486,11 @@ }, { "id": 5711, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105058,16 +76498,11 @@ }, { "id": 5712, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105075,16 +76510,11 @@ }, { "id": 5713, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105124,23 +76554,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5715, "states": [ { "id": 5714, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105148,16 +76573,11 @@ }, { "id": 5715, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105165,16 +76585,11 @@ }, { "id": 5716, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105182,16 +76597,11 @@ }, { "id": 5717, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105199,16 +76609,11 @@ }, { "id": 5718, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105216,16 +76621,11 @@ }, { "id": 5719, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105233,16 +76633,11 @@ }, { "id": 5720, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105250,16 +76645,11 @@ }, { "id": 5721, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105299,23 +76689,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5723, "states": [ { "id": 5722, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105323,16 +76708,11 @@ }, { "id": 5723, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105340,16 +76720,11 @@ }, { "id": 5724, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105357,16 +76732,11 @@ }, { "id": 5725, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105374,16 +76744,11 @@ }, { "id": 5726, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105391,16 +76756,11 @@ }, { "id": 5727, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105408,16 +76768,11 @@ }, { "id": 5728, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105425,16 +76780,11 @@ }, { "id": 5729, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105474,23 +76824,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5731, "states": [ { "id": 5730, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105498,16 +76843,11 @@ }, { "id": 5731, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105515,16 +76855,11 @@ }, { "id": 5732, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105532,16 +76867,11 @@ }, { "id": 5733, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105549,16 +76879,11 @@ }, { "id": 5734, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105566,16 +76891,11 @@ }, { "id": 5735, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105583,16 +76903,11 @@ }, { "id": 5736, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105600,16 +76915,11 @@ }, { "id": 5737, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105649,23 +76959,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5739, "states": [ { "id": 5738, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105673,16 +76978,11 @@ }, { "id": 5739, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105690,16 +76990,11 @@ }, { "id": 5740, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105707,16 +77002,11 @@ }, { "id": 5741, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105724,16 +77014,11 @@ }, { "id": 5742, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105741,16 +77026,11 @@ }, { "id": 5743, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105758,16 +77038,11 @@ }, { "id": 5744, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105775,16 +77050,11 @@ }, { "id": 5745, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105824,23 +77094,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5747, "states": [ { "id": 5746, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105848,16 +77113,11 @@ }, { "id": 5747, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105865,16 +77125,11 @@ }, { "id": 5748, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105882,16 +77137,11 @@ }, { "id": 5749, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -105899,16 +77149,11 @@ }, { "id": 5750, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105916,16 +77161,11 @@ }, { "id": 5751, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105933,16 +77173,11 @@ }, { "id": 5752, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105950,16 +77185,11 @@ }, { "id": 5753, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -105999,23 +77229,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5755, "states": [ { "id": 5754, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106023,16 +77248,11 @@ }, { "id": 5755, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106040,16 +77260,11 @@ }, { "id": 5756, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106057,16 +77272,11 @@ }, { "id": 5757, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106074,16 +77284,11 @@ }, { "id": 5758, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106091,16 +77296,11 @@ }, { "id": 5759, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106108,16 +77308,11 @@ }, { "id": 5760, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106125,16 +77320,11 @@ }, { "id": 5761, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106174,23 +77364,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5763, "states": [ { "id": 5762, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106198,16 +77383,11 @@ }, { "id": 5763, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106215,16 +77395,11 @@ }, { "id": 5764, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106232,16 +77407,11 @@ }, { "id": 5765, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106249,16 +77419,11 @@ }, { "id": 5766, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106266,16 +77431,11 @@ }, { "id": 5767, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106283,16 +77443,11 @@ }, { "id": 5768, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106300,16 +77455,11 @@ }, { "id": 5769, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106349,23 +77499,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5771, "states": [ { "id": 5770, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106373,16 +77518,11 @@ }, { "id": 5771, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106390,16 +77530,11 @@ }, { "id": 5772, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106407,16 +77542,11 @@ }, { "id": 5773, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106424,16 +77554,11 @@ }, { "id": 5774, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106441,16 +77566,11 @@ }, { "id": 5775, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106458,16 +77578,11 @@ }, { "id": 5776, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106475,16 +77590,11 @@ }, { "id": 5777, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106524,23 +77634,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5779, "states": [ { "id": 5778, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106548,16 +77653,11 @@ }, { "id": 5779, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106565,16 +77665,11 @@ }, { "id": 5780, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106582,16 +77677,11 @@ }, { "id": 5781, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106599,16 +77689,11 @@ }, { "id": 5782, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106616,16 +77701,11 @@ }, { "id": 5783, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106633,16 +77713,11 @@ }, { "id": 5784, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106650,16 +77725,11 @@ }, { "id": 5785, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106699,23 +77769,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5787, "states": [ { "id": 5786, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106723,16 +77788,11 @@ }, { "id": 5787, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106740,16 +77800,11 @@ }, { "id": 5788, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106757,16 +77812,11 @@ }, { "id": 5789, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106774,16 +77824,11 @@ }, { "id": 5790, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106791,16 +77836,11 @@ }, { "id": 5791, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106808,16 +77848,11 @@ }, { "id": 5792, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106825,16 +77860,11 @@ }, { "id": 5793, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106874,23 +77904,18 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 5795, "states": [ { "id": 5794, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106898,16 +77923,11 @@ }, { "id": 5795, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106915,16 +77935,11 @@ }, { "id": 5796, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106932,16 +77947,11 @@ }, { "id": 5797, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 68 ], @@ -106949,16 +77959,11 @@ }, { "id": 5798, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106966,16 +77971,11 @@ }, { "id": 5799, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -106983,16 +77983,11 @@ }, { "id": 5800, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -107000,16 +77995,11 @@ }, { "id": 5801, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -107049,346 +78039,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 5811, "states": [ { "id": 5802, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5803, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5804, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5805, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5806, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5807, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5808, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5809, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5810, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5811, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5812, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5813, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5814, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5815, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5816, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5817, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5818, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5819, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5820, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5821, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5822, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5823, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5824, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5825, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -107425,36 +78295,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5827, "states": [ { "id": 5826, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5827, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -107500,1034 +78360,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 5839, "states": [ { "id": 5828, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5829, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5830, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5831, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5832, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5833, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5834, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5835, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5836, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5837, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5838, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5839, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5840, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5841, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5842, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5843, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5844, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5845, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5846, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5847, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5848, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5849, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5850, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5851, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5852, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5853, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5854, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5855, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5856, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5857, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5858, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5859, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5860, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5861, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5862, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5863, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5864, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5865, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5866, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5867, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5868, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5869, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5870, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5871, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5872, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5873, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5874, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5875, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 5876, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5877, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5878, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5879, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5880, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5881, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5882, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5883, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5884, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5885, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 5886, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5887, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5888, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5889, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 5890, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 5891, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -108566,36 +79106,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5893, "states": [ { "id": 5892, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5893, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -108632,36 +79162,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5895, "states": [ { "id": 5894, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5895, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -108698,36 +79218,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5897, "states": [ { "id": 5896, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5897, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -108764,36 +79274,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5899, "states": [ { "id": 5898, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5899, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -108830,36 +79330,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5901, "states": [ { "id": 5900, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5901, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -108896,36 +79386,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5903, "states": [ { "id": 5902, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5903, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -108962,36 +79442,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5905, "states": [ { "id": 5904, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5905, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -109028,36 +79498,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5907, "states": [ { "id": 5906, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5907, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -109094,36 +79554,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5909, "states": [ { "id": 5908, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5909, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -109160,36 +79610,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 5911, "states": [ { "id": 5910, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5911, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -109269,40 +79709,30 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 5913, "states": [ { "id": 5912, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 5913, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -109384,40 +79814,30 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 5915, "states": [ { "id": 5914, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 5915, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -109456,36 +79876,26 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 5916, "states": [ { "id": 5916, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5917, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -109522,121 +79932,81 @@ ] }, "properties": [ - -1870206692, - -246020938 + 1877134791, + -52597051 ], "default_state_id": 5918, "states": [ { "id": 5918, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5919, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5920, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5921, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5922, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5923, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5924, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5925, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -109673,346 +80043,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 5935, "states": [ { "id": 5926, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5927, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5928, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5929, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5930, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5931, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5932, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5933, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5934, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5935, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5936, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5937, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5938, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5939, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5940, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5941, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5942, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5943, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5944, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5945, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5946, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5947, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5948, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5949, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -110386,140 +80636,100 @@ ] }, "properties": [ - 2111860563 + 1467012394 ], "default_state_id": 5950, "states": [ { "id": 5950, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [] }, { "id": 5951, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 70 ] }, { "id": 5952, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 38 ] }, { "id": 5953, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 71 ] }, { "id": 5954, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 51 ] }, { "id": 5955, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 72 ] }, { "id": 5956, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 18 ] }, { "id": 5957, - "air": false, - "is_solid": false, + "state_flags": 28, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 15, - "sided_transparency": true, - "replaceable": true, "collision_shapes": [ 73 ] @@ -110574,16 +80784,11 @@ "states": [ { "id": 5958, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -110657,17 +80862,12 @@ "states": [ { "id": 5959, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -110706,278 +80906,198 @@ ] }, "properties": [ - 1253390778 + 608542609 ], "default_state_id": 5960, "states": [ { "id": 5960, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5961, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5962, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5963, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5964, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5965, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5966, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5967, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5968, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5969, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5970, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5971, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5972, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5973, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5974, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] }, { "id": 5975, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] @@ -111020,16 +81140,11 @@ "states": [ { "id": 5976, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -111101,17 +81216,12 @@ "states": [ { "id": 5977, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "FLUTE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -111150,232 +81260,152 @@ ] }, "properties": [ - 1253390778 + 608542609 ], "default_state_id": 5978, "states": [ { "id": 5978, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5979, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5980, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5981, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5982, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5983, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5984, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5985, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5986, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5987, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5988, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5989, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5990, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5991, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5992, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 5993, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -111412,23 +81442,18 @@ ] }, "properties": [ - 1895167925 + 2088591812 ], "default_state_id": 5995, "states": [ { "id": 5994, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -111436,17 +81461,12 @@ }, { "id": 5995, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -111486,27 +81506,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 6027, "states": [ { "id": 5996, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -111515,17 +81530,12 @@ }, { "id": 5997, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -111533,17 +81543,12 @@ }, { "id": 5998, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -111552,17 +81557,12 @@ }, { "id": 5999, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -111570,17 +81570,12 @@ }, { "id": 6000, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -111588,17 +81583,12 @@ }, { "id": 6001, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -111606,17 +81596,12 @@ }, { "id": 6002, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -111624,17 +81609,12 @@ }, { "id": 6003, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -111642,17 +81622,12 @@ }, { "id": 6004, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -111660,17 +81635,12 @@ }, { "id": 6005, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -111678,17 +81648,12 @@ }, { "id": 6006, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -111696,17 +81661,12 @@ }, { "id": 6007, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -111714,85 +81674,60 @@ }, { "id": 6008, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 6009, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 6010, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 6011, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 6012, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -111801,34 +81736,24 @@ }, { "id": 6013, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 6014, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -111837,34 +81762,24 @@ }, { "id": 6015, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 6016, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -111872,34 +81787,24 @@ }, { "id": 6017, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 6018, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -111907,34 +81812,24 @@ }, { "id": 6019, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 6020, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -111942,34 +81837,24 @@ }, { "id": 6021, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 6022, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -111977,85 +81862,60 @@ }, { "id": 6023, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 6024, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 6025, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 6026, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 6027, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -112098,17 +81958,12 @@ "states": [ { "id": 6028, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112151,17 +82006,12 @@ "states": [ { "id": 6029, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "COW_BELL", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 73 ] @@ -112204,17 +82054,12 @@ "states": [ { "id": 6030, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112253,57 +82098,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 6032, "states": [ { "id": 6031, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6032, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6033, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112342,57 +82172,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 6035, "states": [ { "id": 6034, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6035, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6036, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112435,16 +82250,11 @@ "states": [ { "id": 6037, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -112481,64 +82291,44 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 6038, "states": [ { "id": 6038, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 6039, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 6040, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 6041, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -112629,17 +82419,12 @@ "states": [ { "id": 6042, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "PLING", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112661,36 +82446,26 @@ "random_sequence": "minecraft:blocks/nether_portal" }, "properties": [ - 612676314 + -629560146 ], "default_state_id": 6043, "states": [ { "id": 6043, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 11, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 6044, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 11, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -112727,74 +82502,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 6045, "states": [ { "id": 6045, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6046, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6047, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6048, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112833,74 +82588,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 6049, "states": [ { "id": 6049, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6050, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6051, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6052, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -112922,125 +82657,90 @@ "random_sequence": "minecraft:blocks/cake" }, "properties": [ - 738310903 + 93462734 ], "default_state_id": 6053, "states": [ { "id": 6053, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85 ] }, { "id": 6054, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 86 ] }, { "id": 6055, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 87 ] }, { "id": 6056, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 88 ] }, { "id": 6057, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 89 ] }, { "id": 6058, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 90 ] }, { "id": 6059, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 91 ] @@ -113079,1097 +82779,777 @@ ] }, "properties": [ - -980791440, - -1870206692, - -1343580887, - -634074493 + -1625639609, + 1877134791, + -1150157000, + -440650606 ], "default_state_id": 6063, "states": [ { "id": 6060, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6061, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6062, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6063, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6064, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6065, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6066, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6067, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6068, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6069, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6070, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6071, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6072, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6073, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6074, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6075, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6076, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6077, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6078, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6079, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6080, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6081, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6082, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6083, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6084, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6085, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6086, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6087, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6088, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6089, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6090, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6091, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6092, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6093, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6094, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6095, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6096, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6097, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6098, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6099, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6100, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6101, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6102, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6103, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6104, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6105, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6106, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6107, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6108, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6109, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6110, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6111, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6112, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6113, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6114, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6115, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6116, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6117, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6118, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6119, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6120, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6121, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6122, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] }, { "id": 6123, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ] @@ -114224,16 +83604,11 @@ "states": [ { "id": 6124, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114288,16 +83663,11 @@ "states": [ { "id": 6125, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114352,16 +83722,11 @@ "states": [ { "id": 6126, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114416,16 +83781,11 @@ "states": [ { "id": 6127, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114480,16 +83840,11 @@ "states": [ { "id": 6128, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114544,16 +83899,11 @@ "states": [ { "id": 6129, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114608,16 +83958,11 @@ "states": [ { "id": 6130, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114672,16 +84017,11 @@ "states": [ { "id": 6131, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114736,16 +84076,11 @@ "states": [ { "id": 6132, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114800,16 +84135,11 @@ "states": [ { "id": 6133, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114864,16 +84194,11 @@ "states": [ { "id": 6134, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114928,16 +84253,11 @@ "states": [ { "id": 6135, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -114992,16 +84312,11 @@ "states": [ { "id": 6136, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -115056,16 +84371,11 @@ "states": [ { "id": 6137, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -115120,16 +84430,11 @@ "states": [ { "id": 6138, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -115184,16 +84489,11 @@ "states": [ { "id": 6139, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -115232,1034 +84532,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6155, "states": [ { "id": 6140, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6141, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6142, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6143, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6144, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6145, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6146, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6147, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6148, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6149, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6150, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6151, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6152, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6153, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6154, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6155, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6156, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6157, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6158, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6159, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6160, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6161, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6162, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6163, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6164, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6165, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6166, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6167, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6168, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6169, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6170, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6171, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6172, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6173, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6174, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6175, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6176, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6177, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6178, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6179, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6180, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6181, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6182, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6183, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6184, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6185, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6186, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6187, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6188, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6189, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6190, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6191, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6192, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6193, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6194, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6195, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6196, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6197, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6198, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6199, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6200, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6201, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6202, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6203, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -116298,1034 +85278,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6219, "states": [ { "id": 6204, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6205, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6206, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6207, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6208, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6209, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6210, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6211, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6212, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6213, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6214, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6215, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6216, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6217, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6218, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6219, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6220, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6221, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6222, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6223, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6224, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6225, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6226, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6227, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6228, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6229, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6230, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6231, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6232, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6233, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6234, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6235, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6236, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6237, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6238, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6239, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6240, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6241, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6242, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6243, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6244, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6245, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6246, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6247, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6248, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6249, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6250, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6251, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6252, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6253, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6254, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6255, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6256, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6257, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6258, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6259, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6260, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6261, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6262, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6263, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6264, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6265, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6266, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6267, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -117364,1034 +86024,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6283, "states": [ { "id": 6268, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6269, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6270, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6271, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6272, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6273, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6274, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6275, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6276, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6277, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6278, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6279, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6280, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6281, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6282, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6283, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6284, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6285, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6286, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6287, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6288, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6289, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6290, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6291, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6292, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6293, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6294, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6295, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6296, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6297, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6298, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6299, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6300, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6301, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6302, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6303, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6304, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6305, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6306, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6307, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6308, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6309, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6310, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6311, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6312, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6313, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6314, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6315, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6316, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6317, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6318, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6319, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6320, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6321, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6322, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6323, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6324, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6325, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6326, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6327, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6328, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6329, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6330, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6331, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -118430,1034 +86770,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6347, "states": [ { "id": 6332, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6333, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6334, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6335, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6336, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6337, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6338, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6339, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6340, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6341, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6342, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6343, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6344, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6345, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6346, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6347, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6348, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6349, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6350, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6351, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6352, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6353, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6354, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6355, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6356, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6357, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6358, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6359, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6360, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6361, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6362, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6363, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6364, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6365, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6366, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6367, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6368, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6369, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6370, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6371, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6372, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6373, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6374, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6375, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6376, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6377, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6378, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6379, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6380, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6381, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6382, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6383, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6384, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6385, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6386, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6387, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6388, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6389, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6390, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6391, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6392, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6393, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6394, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6395, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -119496,1034 +87516,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6411, "states": [ { "id": 6396, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6397, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6398, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6399, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6400, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6401, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6402, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6403, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6404, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6405, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6406, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6407, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6408, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6409, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6410, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6411, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6412, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6413, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6414, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6415, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6416, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6417, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6418, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6419, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6420, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6421, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6422, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6423, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6424, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6425, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6426, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6427, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6428, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6429, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6430, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6431, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6432, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6433, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6434, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6435, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6436, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6437, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6438, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6439, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6440, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6441, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6442, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6443, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6444, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6445, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6446, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6447, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6448, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6449, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6450, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6451, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6452, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6453, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6454, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6455, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6456, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6457, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6458, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6459, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -120562,1034 +88262,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6475, "states": [ { "id": 6460, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6461, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6462, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6463, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6464, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6465, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6466, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6467, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6468, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6469, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6470, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6471, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6472, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6473, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6474, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6475, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6476, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6477, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6478, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6479, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6480, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6481, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6482, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6483, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6484, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6485, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6486, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6487, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6488, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6489, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6490, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6491, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6492, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6493, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6494, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6495, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6496, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6497, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6498, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6499, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6500, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6501, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6502, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6503, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6504, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6505, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6506, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6507, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6508, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6509, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6510, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6511, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6512, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6513, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6514, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6515, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6516, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6517, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6518, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6519, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6520, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6521, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6522, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6523, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -121628,1034 +89008,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6539, "states": [ { "id": 6524, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6525, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6526, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6527, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6528, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6529, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6530, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6531, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6532, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6533, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6534, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6535, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6536, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6537, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6538, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6539, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6540, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6541, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6542, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6543, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6544, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6545, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6546, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6547, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6548, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6549, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6550, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6551, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6552, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6553, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6554, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6555, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6556, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6557, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6558, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6559, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6560, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6561, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6562, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6563, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6564, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6565, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6566, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6567, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6568, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6569, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6570, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6571, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6572, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6573, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6574, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6575, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6576, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6577, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6578, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6579, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6580, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6581, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6582, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6583, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6584, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6585, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6586, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6587, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -122694,1034 +89754,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6603, "states": [ { "id": 6588, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6589, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6590, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6591, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6592, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6593, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6594, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6595, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6596, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6597, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6598, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6599, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6600, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6601, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6602, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6603, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6604, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6605, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6606, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6607, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6608, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6609, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6610, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6611, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6612, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6613, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6614, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6615, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6616, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6617, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6618, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6619, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6620, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6621, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6622, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6623, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6624, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6625, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6626, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6627, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6628, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6629, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6630, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6631, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6632, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6633, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6634, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6635, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6636, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6637, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6638, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6639, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6640, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6641, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6642, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6643, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6644, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6645, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6646, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6647, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6648, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6649, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6650, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6651, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -123760,1034 +90500,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6667, "states": [ { "id": 6652, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6653, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6654, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6655, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6656, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6657, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6658, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6659, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6660, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6661, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6662, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6663, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6664, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6665, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6666, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6667, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6668, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6669, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6670, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6671, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6672, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6673, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6674, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6675, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6676, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6677, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6678, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6679, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6680, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6681, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6682, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6683, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6684, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6685, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6686, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6687, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6688, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6689, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6690, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6691, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6692, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6693, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6694, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6695, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6696, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6697, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6698, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6699, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6700, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6701, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6702, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6703, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6704, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6705, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6706, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6707, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6708, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6709, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6710, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6711, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6712, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6713, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6714, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6715, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -124826,1034 +91246,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 6731, "states": [ { "id": 6716, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6717, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6718, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6719, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6720, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6721, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6722, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6723, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6724, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6725, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6726, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6727, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 6728, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6729, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6730, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6731, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6732, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6733, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6734, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6735, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6736, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6737, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6738, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6739, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6740, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6741, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6742, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6743, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 6744, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6745, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6746, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6747, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6748, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6749, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6750, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6751, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6752, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6753, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6754, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6755, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6756, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6757, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6758, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6759, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 6760, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6761, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6762, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6763, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6764, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6765, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6766, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6767, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6768, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6769, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6770, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6771, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 6772, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6773, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6774, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6775, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 6776, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6777, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6778, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 6779, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -125896,17 +91996,12 @@ "states": [ { "id": 6780, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -125949,17 +92044,12 @@ "states": [ { "id": 6781, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126002,17 +92092,12 @@ "states": [ { "id": 6782, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126055,17 +92140,12 @@ "states": [ { "id": 6783, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126108,17 +92188,12 @@ "states": [ { "id": 6784, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126161,17 +92236,12 @@ "states": [ { "id": 6785, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126226,17 +92296,12 @@ "states": [ { "id": 6786, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.75, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126291,17 +92356,12 @@ "states": [ { "id": 6787, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126356,17 +92416,12 @@ "states": [ { "id": 6788, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.75, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126421,17 +92476,12 @@ "states": [ { "id": 6789, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.75, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126486,17 +92536,12 @@ "states": [ { "id": 6790, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.75, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126551,17 +92596,12 @@ "states": [ { "id": 6791, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.75, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -126641,1099 +92681,779 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + -49058339 ], "default_state_id": 6792, "states": [ { "id": 6792, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6793, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6794, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6795, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6796, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6797, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6798, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6799, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6800, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6801, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6802, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6803, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6804, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6805, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6806, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6807, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6808, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6809, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6810, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6811, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6812, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6813, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6814, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6815, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6816, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6817, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6818, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6819, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6820, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6821, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6822, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6823, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6824, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6825, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6826, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6827, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6828, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6829, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6830, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6831, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6832, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6833, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6834, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6835, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6836, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6837, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6838, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6839, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6840, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6841, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6842, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6843, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6844, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6845, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6846, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6847, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6848, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6849, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6850, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6851, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6852, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6853, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6854, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6855, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -127813,1099 +93533,779 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + -49058339 ], "default_state_id": 6856, "states": [ { "id": 6856, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6857, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6858, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6859, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6860, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6861, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6862, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6863, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6864, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6865, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6866, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6867, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6868, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6869, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6870, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6871, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6872, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6873, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6874, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6875, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6876, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6877, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6878, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6879, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6880, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6881, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6882, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6883, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6884, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6885, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6886, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6887, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6888, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6889, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6890, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6891, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6892, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6893, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6894, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6895, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6896, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6897, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6898, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6899, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6900, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6901, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6902, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6903, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6904, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6905, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6906, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6907, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6908, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6909, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6910, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6911, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6912, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6913, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6914, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6915, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6916, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6917, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6918, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6919, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -128956,1099 +94356,779 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + -49058339 ], "default_state_id": 6920, "states": [ { "id": 6920, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6921, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6922, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6923, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6924, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6925, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6926, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6927, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6928, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6929, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6930, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6931, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6932, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6933, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6934, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6935, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6936, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6937, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6938, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6939, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6940, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6941, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6942, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6943, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6944, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6945, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6946, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6947, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6948, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6949, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6950, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6951, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6952, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6953, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6954, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6955, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6956, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6957, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6958, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6959, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6960, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6961, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6962, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6963, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6964, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6965, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6966, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6967, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6968, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6969, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6970, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6971, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6972, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6973, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6974, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6975, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6976, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6977, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6978, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6979, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6980, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6981, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6982, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 6983, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -130087,26 +95167,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 7015, "states": [ { "id": 6984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -130115,16 +95190,11 @@ }, { "id": 6985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -130132,16 +95202,11 @@ }, { "id": 6986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -130150,16 +95215,11 @@ }, { "id": 6987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -130167,16 +95227,11 @@ }, { "id": 6988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -130184,16 +95239,11 @@ }, { "id": 6989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -130201,16 +95251,11 @@ }, { "id": 6990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -130218,16 +95263,11 @@ }, { "id": 6991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -130235,16 +95275,11 @@ }, { "id": 6992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -130252,16 +95287,11 @@ }, { "id": 6993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -130269,16 +95299,11 @@ }, { "id": 6994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -130286,16 +95311,11 @@ }, { "id": 6995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -130303,80 +95323,55 @@ }, { "id": 6996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 6997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 6998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 6999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 7000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -130385,32 +95380,22 @@ }, { "id": 7001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 7002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -130419,32 +95404,22 @@ }, { "id": 7003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 7004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -130452,32 +95427,22 @@ }, { "id": 7005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 7006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -130485,32 +95450,22 @@ }, { "id": 7007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 7008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -130518,32 +95473,22 @@ }, { "id": 7009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 7010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -130551,80 +95496,55 @@ }, { "id": 7011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 7012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 7013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 7014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 7015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -130663,103 +95583,73 @@ ] }, "properties": [ - 2039405382, - 795783032 + 957115720, + 989206919 ], "default_state_id": 7019, "states": [ { "id": 7016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 104 ] }, { "id": 7017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 104 ] }, { "id": 7018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 105 ] }, { "id": 7019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 105 ] }, { "id": 7020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 106 ] }, { "id": 7021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 106 ] @@ -130810,26 +95700,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 7053, "states": [ { "id": 7022, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -130838,16 +95723,11 @@ }, { "id": 7023, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -130855,16 +95735,11 @@ }, { "id": 7024, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -130873,16 +95748,11 @@ }, { "id": 7025, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -130890,16 +95760,11 @@ }, { "id": 7026, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -130907,16 +95772,11 @@ }, { "id": 7027, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -130924,16 +95784,11 @@ }, { "id": 7028, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -130941,16 +95796,11 @@ }, { "id": 7029, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -130958,16 +95808,11 @@ }, { "id": 7030, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -130975,16 +95820,11 @@ }, { "id": 7031, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -130992,16 +95832,11 @@ }, { "id": 7032, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -131009,16 +95844,11 @@ }, { "id": 7033, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -131026,80 +95856,55 @@ }, { "id": 7034, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 7035, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 7036, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 7037, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 7038, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -131108,32 +95913,22 @@ }, { "id": 7039, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 7040, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -131142,32 +95937,22 @@ }, { "id": 7041, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 7042, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -131175,32 +95960,22 @@ }, { "id": 7043, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 7044, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -131208,32 +95983,22 @@ }, { "id": 7045, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 7046, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -131241,32 +96006,22 @@ }, { "id": 7047, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 7048, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -131274,80 +96029,55 @@ }, { "id": 7049, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 7050, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 7051, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 7052, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 7053, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -131390,17 +96120,12 @@ "states": [ { "id": 7054, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "DIDGERIDOO", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -131492,17 +96217,12 @@ "states": [ { "id": 7055, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -131552,64 +96272,44 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 7056, "states": [ { "id": 7056, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7057, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7058, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7059, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -131657,64 +96357,44 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 7060, "states": [ { "id": 7060, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7061, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7062, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7063, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -131897,120 +96577,80 @@ ] }, "properties": [ - -503090506 + -1147938675 ], "default_state_id": 7064, "states": [ { "id": 7064, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7065, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7066, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7067, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7068, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7069, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7070, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7071, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -132193,120 +96833,80 @@ ] }, "properties": [ - -503090506 + -1147938675 ], "default_state_id": 7072, "states": [ { "id": 7072, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7073, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7074, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7075, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7076, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7077, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7078, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7079, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -132346,460 +96946,300 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - -246124358, - -242482226 + -49598421, + 52303155, + 56923643, + -52700471, + -49058339 ], "default_state_id": 7111, "states": [ { "id": 7080, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7081, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7082, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7083, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7084, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7085, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7086, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7087, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7088, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7089, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7090, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7091, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7092, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7093, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7094, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7095, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7096, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7097, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7098, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7099, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7100, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7101, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7102, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7103, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7104, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7105, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7106, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7107, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7108, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7109, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7110, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7111, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -132933,1806 +97373,1166 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - 795783032, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + 989206919, + -49058339 ], "default_state_id": 7239, "states": [ { "id": 7112, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7113, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7114, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7115, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7116, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7117, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7118, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7119, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7120, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7121, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7122, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7123, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7124, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7125, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7126, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7127, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7128, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7129, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7130, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7131, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7132, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7133, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7134, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7135, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7136, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7137, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7138, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7139, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7140, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7141, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7142, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7143, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7144, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7145, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7146, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7147, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7148, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7149, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7150, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7151, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7152, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7153, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7154, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7155, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7156, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7157, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7158, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7159, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7160, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7161, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7162, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7163, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7164, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7165, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7166, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7167, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7168, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7169, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7170, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7171, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7172, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7173, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7174, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7175, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7176, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7177, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7178, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7179, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7180, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7181, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7182, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7183, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7184, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7185, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7186, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7187, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7188, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7189, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7190, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7191, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7192, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7193, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7194, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7195, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7196, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7197, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7198, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7199, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7200, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7201, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7202, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7203, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7204, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7205, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7206, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7207, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7208, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7209, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7210, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7211, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7212, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7213, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7214, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7215, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7216, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7217, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7218, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7219, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7220, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7221, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7222, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7223, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7224, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7225, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7226, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7227, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7228, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7229, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7230, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7231, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7232, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7233, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7234, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7235, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7236, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7237, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7238, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7239, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -134858,1806 +98658,1166 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - 795783032, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + 989206919, + -49058339 ], "default_state_id": 7367, "states": [ { "id": 7240, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7241, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7242, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7243, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7244, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7245, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7246, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7247, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7248, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7249, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7250, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7251, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7252, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7253, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7254, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7255, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7256, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7257, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7258, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7259, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7260, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7261, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7262, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7263, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7264, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7265, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7266, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7267, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7268, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7269, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7270, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7271, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7272, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7273, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7274, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7275, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7276, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7277, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7278, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7279, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7280, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7281, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7282, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7283, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7284, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7285, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7286, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7287, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7288, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7289, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7290, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7291, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7292, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7293, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7294, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7295, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7296, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7297, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7298, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7299, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7300, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7301, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7302, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7303, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7304, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7305, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7306, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7307, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7308, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7309, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7310, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7311, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7312, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7313, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7314, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7315, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7316, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7317, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7318, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7319, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7320, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7321, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7322, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7323, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7324, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7325, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7326, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7327, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7328, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7329, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7330, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7331, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7332, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7333, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7334, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7335, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7336, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7337, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7338, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7339, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7340, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7341, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7342, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7343, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7344, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7345, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7346, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7347, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7348, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7349, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7350, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7351, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7352, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7353, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7354, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7355, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7356, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7357, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7358, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7359, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7360, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7361, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7362, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7363, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7364, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7365, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7366, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 7367, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -136694,521 +99854,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 7375, "states": [ { "id": 7368, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7369, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7370, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7371, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7372, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7373, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7374, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7375, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7376, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7377, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7378, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7379, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7380, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7381, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7382, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7383, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 7384, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7385, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7386, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7387, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7388, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7389, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7390, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7391, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7392, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7393, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7394, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7395, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7396, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7397, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7398, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 7399, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -137247,26 +100247,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 7411, "states": [ { "id": 7400, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -137274,17 +100269,12 @@ }, { "id": 7401, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -137292,17 +100282,12 @@ }, { "id": 7402, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -137311,17 +100296,12 @@ }, { "id": 7403, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -137330,17 +100310,12 @@ }, { "id": 7404, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -137349,17 +100324,12 @@ }, { "id": 7405, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -137368,17 +100338,12 @@ }, { "id": 7406, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -137387,17 +100352,12 @@ }, { "id": 7407, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -137406,17 +100366,12 @@ }, { "id": 7408, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -137425,17 +100380,12 @@ }, { "id": 7409, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -137444,17 +100394,12 @@ }, { "id": 7410, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -137462,17 +100407,12 @@ }, { "id": 7411, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -137480,17 +100420,12 @@ }, { "id": 7412, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -137499,17 +100434,12 @@ }, { "id": 7413, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -137518,17 +100448,12 @@ }, { "id": 7414, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -137537,17 +100462,12 @@ }, { "id": 7415, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -137556,17 +100476,12 @@ }, { "id": 7416, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -137574,17 +100489,12 @@ }, { "id": 7417, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -137592,17 +100502,12 @@ }, { "id": 7418, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -137610,17 +100515,12 @@ }, { "id": 7419, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -137628,17 +100528,12 @@ }, { "id": 7420, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -137646,17 +100541,12 @@ }, { "id": 7421, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -137664,17 +100554,12 @@ }, { "id": 7422, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -137683,17 +100568,12 @@ }, { "id": 7423, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -137702,17 +100582,12 @@ }, { "id": 7424, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -137721,17 +100596,12 @@ }, { "id": 7425, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -137740,17 +100610,12 @@ }, { "id": 7426, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -137759,17 +100624,12 @@ }, { "id": 7427, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -137778,17 +100638,12 @@ }, { "id": 7428, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -137797,17 +100652,12 @@ }, { "id": 7429, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -137816,17 +100666,12 @@ }, { "id": 7430, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -137834,17 +100679,12 @@ }, { "id": 7431, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -137852,17 +100692,12 @@ }, { "id": 7432, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -137871,17 +100706,12 @@ }, { "id": 7433, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -137890,17 +100720,12 @@ }, { "id": 7434, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -137909,17 +100734,12 @@ }, { "id": 7435, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -137928,17 +100748,12 @@ }, { "id": 7436, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -137946,17 +100761,12 @@ }, { "id": 7437, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -137964,17 +100774,12 @@ }, { "id": 7438, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -137982,17 +100787,12 @@ }, { "id": 7439, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -138000,17 +100800,12 @@ }, { "id": 7440, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -138018,17 +100813,12 @@ }, { "id": 7441, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -138036,17 +100826,12 @@ }, { "id": 7442, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -138055,17 +100840,12 @@ }, { "id": 7443, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -138074,17 +100854,12 @@ }, { "id": 7444, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -138093,17 +100868,12 @@ }, { "id": 7445, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -138112,17 +100882,12 @@ }, { "id": 7446, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -138131,17 +100896,12 @@ }, { "id": 7447, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -138150,17 +100910,12 @@ }, { "id": 7448, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -138169,17 +100924,12 @@ }, { "id": 7449, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -138188,17 +100938,12 @@ }, { "id": 7450, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -138206,17 +100951,12 @@ }, { "id": 7451, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -138224,17 +100964,12 @@ }, { "id": 7452, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -138243,17 +100978,12 @@ }, { "id": 7453, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -138262,17 +100992,12 @@ }, { "id": 7454, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -138281,17 +101006,12 @@ }, { "id": 7455, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -138300,17 +101020,12 @@ }, { "id": 7456, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -138318,17 +101033,12 @@ }, { "id": 7457, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -138336,17 +101046,12 @@ }, { "id": 7458, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -138354,17 +101059,12 @@ }, { "id": 7459, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -138372,17 +101072,12 @@ }, { "id": 7460, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -138390,17 +101085,12 @@ }, { "id": 7461, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -138408,17 +101098,12 @@ }, { "id": 7462, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -138427,17 +101112,12 @@ }, { "id": 7463, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -138446,17 +101126,12 @@ }, { "id": 7464, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -138465,17 +101140,12 @@ }, { "id": 7465, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -138484,17 +101154,12 @@ }, { "id": 7466, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -138503,17 +101168,12 @@ }, { "id": 7467, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -138522,17 +101182,12 @@ }, { "id": 7468, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -138541,17 +101196,12 @@ }, { "id": 7469, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -138560,17 +101210,12 @@ }, { "id": 7470, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -138578,17 +101223,12 @@ }, { "id": 7471, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -138596,17 +101236,12 @@ }, { "id": 7472, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -138615,17 +101250,12 @@ }, { "id": 7473, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -138634,17 +101264,12 @@ }, { "id": 7474, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -138653,17 +101278,12 @@ }, { "id": 7475, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -138672,17 +101292,12 @@ }, { "id": 7476, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -138690,17 +101305,12 @@ }, { "id": 7477, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -138708,17 +101318,12 @@ }, { "id": 7478, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -138726,17 +101331,12 @@ }, { "id": 7479, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -138776,26 +101376,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 7491, "states": [ { "id": 7480, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -138803,17 +101398,12 @@ }, { "id": 7481, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -138821,17 +101411,12 @@ }, { "id": 7482, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -138840,17 +101425,12 @@ }, { "id": 7483, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -138859,17 +101439,12 @@ }, { "id": 7484, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -138878,17 +101453,12 @@ }, { "id": 7485, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -138897,17 +101467,12 @@ }, { "id": 7486, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -138916,17 +101481,12 @@ }, { "id": 7487, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -138935,17 +101495,12 @@ }, { "id": 7488, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -138954,17 +101509,12 @@ }, { "id": 7489, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -138973,17 +101523,12 @@ }, { "id": 7490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -138991,17 +101536,12 @@ }, { "id": 7491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -139009,17 +101549,12 @@ }, { "id": 7492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139028,17 +101563,12 @@ }, { "id": 7493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139047,17 +101577,12 @@ }, { "id": 7494, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -139066,17 +101591,12 @@ }, { "id": 7495, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -139085,17 +101605,12 @@ }, { "id": 7496, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -139103,17 +101618,12 @@ }, { "id": 7497, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -139121,17 +101631,12 @@ }, { "id": 7498, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -139139,17 +101644,12 @@ }, { "id": 7499, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -139157,17 +101657,12 @@ }, { "id": 7500, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -139175,17 +101670,12 @@ }, { "id": 7501, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -139193,17 +101683,12 @@ }, { "id": 7502, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -139212,17 +101697,12 @@ }, { "id": 7503, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -139231,17 +101711,12 @@ }, { "id": 7504, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -139250,17 +101725,12 @@ }, { "id": 7505, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -139269,17 +101739,12 @@ }, { "id": 7506, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -139288,17 +101753,12 @@ }, { "id": 7507, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -139307,17 +101767,12 @@ }, { "id": 7508, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -139326,17 +101781,12 @@ }, { "id": 7509, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -139345,17 +101795,12 @@ }, { "id": 7510, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -139363,17 +101808,12 @@ }, { "id": 7511, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -139381,17 +101821,12 @@ }, { "id": 7512, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -139400,17 +101835,12 @@ }, { "id": 7513, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -139419,17 +101849,12 @@ }, { "id": 7514, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139438,17 +101863,12 @@ }, { "id": 7515, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139457,17 +101877,12 @@ }, { "id": 7516, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -139475,17 +101890,12 @@ }, { "id": 7517, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -139493,17 +101903,12 @@ }, { "id": 7518, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -139511,17 +101916,12 @@ }, { "id": 7519, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -139529,17 +101929,12 @@ }, { "id": 7520, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -139547,17 +101942,12 @@ }, { "id": 7521, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -139565,17 +101955,12 @@ }, { "id": 7522, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -139584,17 +101969,12 @@ }, { "id": 7523, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -139603,17 +101983,12 @@ }, { "id": 7524, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -139622,17 +101997,12 @@ }, { "id": 7525, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -139641,17 +102011,12 @@ }, { "id": 7526, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -139660,17 +102025,12 @@ }, { "id": 7527, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -139679,17 +102039,12 @@ }, { "id": 7528, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -139698,17 +102053,12 @@ }, { "id": 7529, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -139717,17 +102067,12 @@ }, { "id": 7530, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -139735,17 +102080,12 @@ }, { "id": 7531, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -139753,17 +102093,12 @@ }, { "id": 7532, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139772,17 +102107,12 @@ }, { "id": 7533, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139791,17 +102121,12 @@ }, { "id": 7534, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139810,17 +102135,12 @@ }, { "id": 7535, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -139829,17 +102149,12 @@ }, { "id": 7536, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -139847,17 +102162,12 @@ }, { "id": 7537, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -139865,17 +102175,12 @@ }, { "id": 7538, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -139883,17 +102188,12 @@ }, { "id": 7539, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -139901,17 +102201,12 @@ }, { "id": 7540, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -139919,17 +102214,12 @@ }, { "id": 7541, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -139937,17 +102227,12 @@ }, { "id": 7542, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -139956,17 +102241,12 @@ }, { "id": 7543, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -139975,17 +102255,12 @@ }, { "id": 7544, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -139994,17 +102269,12 @@ }, { "id": 7545, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -140013,17 +102283,12 @@ }, { "id": 7546, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -140032,17 +102297,12 @@ }, { "id": 7547, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -140051,17 +102311,12 @@ }, { "id": 7548, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -140070,17 +102325,12 @@ }, { "id": 7549, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -140089,17 +102339,12 @@ }, { "id": 7550, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -140107,17 +102352,12 @@ }, { "id": 7551, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -140125,17 +102365,12 @@ }, { "id": 7552, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -140144,17 +102379,12 @@ }, { "id": 7553, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -140163,17 +102393,12 @@ }, { "id": 7554, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -140182,17 +102407,12 @@ }, { "id": 7555, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -140201,17 +102421,12 @@ }, { "id": 7556, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -140219,17 +102434,12 @@ }, { "id": 7557, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -140237,17 +102447,12 @@ }, { "id": 7558, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -140255,17 +102460,12 @@ }, { "id": 7559, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -140305,26 +102505,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 7571, "states": [ { "id": 7560, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -140332,17 +102527,12 @@ }, { "id": 7561, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -140350,17 +102540,12 @@ }, { "id": 7562, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -140369,17 +102554,12 @@ }, { "id": 7563, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -140388,17 +102568,12 @@ }, { "id": 7564, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -140407,17 +102582,12 @@ }, { "id": 7565, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -140426,17 +102596,12 @@ }, { "id": 7566, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -140445,17 +102610,12 @@ }, { "id": 7567, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -140464,17 +102624,12 @@ }, { "id": 7568, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -140483,17 +102638,12 @@ }, { "id": 7569, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -140502,17 +102652,12 @@ }, { "id": 7570, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -140520,17 +102665,12 @@ }, { "id": 7571, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -140538,17 +102678,12 @@ }, { "id": 7572, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -140557,17 +102692,12 @@ }, { "id": 7573, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -140576,17 +102706,12 @@ }, { "id": 7574, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -140595,17 +102720,12 @@ }, { "id": 7575, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -140614,17 +102734,12 @@ }, { "id": 7576, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -140632,17 +102747,12 @@ }, { "id": 7577, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -140650,17 +102760,12 @@ }, { "id": 7578, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -140668,17 +102773,12 @@ }, { "id": 7579, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -140686,17 +102786,12 @@ }, { "id": 7580, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -140704,17 +102799,12 @@ }, { "id": 7581, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -140722,17 +102812,12 @@ }, { "id": 7582, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -140741,17 +102826,12 @@ }, { "id": 7583, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -140760,17 +102840,12 @@ }, { "id": 7584, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -140779,17 +102854,12 @@ }, { "id": 7585, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -140798,17 +102868,12 @@ }, { "id": 7586, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -140817,17 +102882,12 @@ }, { "id": 7587, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -140836,17 +102896,12 @@ }, { "id": 7588, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -140855,17 +102910,12 @@ }, { "id": 7589, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -140874,17 +102924,12 @@ }, { "id": 7590, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -140892,17 +102937,12 @@ }, { "id": 7591, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -140910,17 +102950,12 @@ }, { "id": 7592, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -140929,17 +102964,12 @@ }, { "id": 7593, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -140948,17 +102978,12 @@ }, { "id": 7594, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -140967,17 +102992,12 @@ }, { "id": 7595, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -140986,17 +103006,12 @@ }, { "id": 7596, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -141004,17 +103019,12 @@ }, { "id": 7597, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -141022,17 +103032,12 @@ }, { "id": 7598, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -141040,17 +103045,12 @@ }, { "id": 7599, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -141058,17 +103058,12 @@ }, { "id": 7600, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -141076,17 +103071,12 @@ }, { "id": 7601, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -141094,17 +103084,12 @@ }, { "id": 7602, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -141113,17 +103098,12 @@ }, { "id": 7603, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -141132,17 +103112,12 @@ }, { "id": 7604, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -141151,17 +103126,12 @@ }, { "id": 7605, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -141170,17 +103140,12 @@ }, { "id": 7606, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -141189,17 +103154,12 @@ }, { "id": 7607, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -141208,17 +103168,12 @@ }, { "id": 7608, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -141227,17 +103182,12 @@ }, { "id": 7609, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -141246,17 +103196,12 @@ }, { "id": 7610, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -141264,17 +103209,12 @@ }, { "id": 7611, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -141282,17 +103222,12 @@ }, { "id": 7612, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -141301,17 +103236,12 @@ }, { "id": 7613, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -141320,17 +103250,12 @@ }, { "id": 7614, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -141339,17 +103264,12 @@ }, { "id": 7615, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -141358,17 +103278,12 @@ }, { "id": 7616, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -141376,17 +103291,12 @@ }, { "id": 7617, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -141394,17 +103304,12 @@ }, { "id": 7618, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -141412,17 +103317,12 @@ }, { "id": 7619, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -141430,17 +103330,12 @@ }, { "id": 7620, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -141448,17 +103343,12 @@ }, { "id": 7621, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -141466,17 +103356,12 @@ }, { "id": 7622, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -141485,17 +103370,12 @@ }, { "id": 7623, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -141504,17 +103384,12 @@ }, { "id": 7624, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -141523,17 +103398,12 @@ }, { "id": 7625, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -141542,17 +103412,12 @@ }, { "id": 7626, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -141561,17 +103426,12 @@ }, { "id": 7627, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -141580,17 +103440,12 @@ }, { "id": 7628, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -141599,17 +103454,12 @@ }, { "id": 7629, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -141618,17 +103468,12 @@ }, { "id": 7630, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -141636,17 +103481,12 @@ }, { "id": 7631, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -141654,17 +103494,12 @@ }, { "id": 7632, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -141673,17 +103508,12 @@ }, { "id": 7633, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -141692,17 +103522,12 @@ }, { "id": 7634, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -141711,17 +103536,12 @@ }, { "id": 7635, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -141730,17 +103550,12 @@ }, { "id": 7636, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -141748,17 +103563,12 @@ }, { "id": 7637, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -141766,17 +103576,12 @@ }, { "id": 7638, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -141784,17 +103589,12 @@ }, { "id": 7639, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -141860,40 +103660,30 @@ ] }, "properties": [ - -136535691 + 56888196 ], "default_state_id": 7641, "states": [ { "id": 7640, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 7641, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -141936,16 +103726,11 @@ "states": [ { "id": 7642, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 107 ] @@ -141988,17 +103773,12 @@ "states": [ { "id": 7643, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -142041,17 +103821,12 @@ "states": [ { "id": 7644, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -142090,26 +103865,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 7656, "states": [ { "id": 7645, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -142117,17 +103887,12 @@ }, { "id": 7646, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -142135,17 +103900,12 @@ }, { "id": 7647, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -142154,17 +103914,12 @@ }, { "id": 7648, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -142173,17 +103928,12 @@ }, { "id": 7649, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -142192,17 +103942,12 @@ }, { "id": 7650, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -142211,17 +103956,12 @@ }, { "id": 7651, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -142230,17 +103970,12 @@ }, { "id": 7652, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -142249,17 +103984,12 @@ }, { "id": 7653, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -142268,17 +103998,12 @@ }, { "id": 7654, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -142287,17 +104012,12 @@ }, { "id": 7655, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -142305,17 +104025,12 @@ }, { "id": 7656, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -142323,17 +104038,12 @@ }, { "id": 7657, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -142342,17 +104052,12 @@ }, { "id": 7658, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -142361,17 +104066,12 @@ }, { "id": 7659, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -142380,17 +104080,12 @@ }, { "id": 7660, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -142399,17 +104094,12 @@ }, { "id": 7661, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -142417,17 +104107,12 @@ }, { "id": 7662, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -142435,17 +104120,12 @@ }, { "id": 7663, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -142453,17 +104133,12 @@ }, { "id": 7664, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -142471,17 +104146,12 @@ }, { "id": 7665, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -142489,17 +104159,12 @@ }, { "id": 7666, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -142507,17 +104172,12 @@ }, { "id": 7667, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -142526,17 +104186,12 @@ }, { "id": 7668, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -142545,17 +104200,12 @@ }, { "id": 7669, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -142564,17 +104214,12 @@ }, { "id": 7670, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -142583,17 +104228,12 @@ }, { "id": 7671, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -142602,17 +104242,12 @@ }, { "id": 7672, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -142621,17 +104256,12 @@ }, { "id": 7673, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -142640,17 +104270,12 @@ }, { "id": 7674, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -142659,17 +104284,12 @@ }, { "id": 7675, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -142677,17 +104297,12 @@ }, { "id": 7676, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -142695,17 +104310,12 @@ }, { "id": 7677, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -142714,17 +104324,12 @@ }, { "id": 7678, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -142733,17 +104338,12 @@ }, { "id": 7679, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -142752,17 +104352,12 @@ }, { "id": 7680, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -142771,17 +104366,12 @@ }, { "id": 7681, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -142789,17 +104379,12 @@ }, { "id": 7682, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -142807,17 +104392,12 @@ }, { "id": 7683, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -142825,17 +104405,12 @@ }, { "id": 7684, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -142843,17 +104418,12 @@ }, { "id": 7685, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -142861,17 +104431,12 @@ }, { "id": 7686, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -142879,17 +104444,12 @@ }, { "id": 7687, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -142898,17 +104458,12 @@ }, { "id": 7688, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -142917,17 +104472,12 @@ }, { "id": 7689, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -142936,17 +104486,12 @@ }, { "id": 7690, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -142955,17 +104500,12 @@ }, { "id": 7691, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -142974,17 +104514,12 @@ }, { "id": 7692, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -142993,17 +104528,12 @@ }, { "id": 7693, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -143012,17 +104542,12 @@ }, { "id": 7694, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -143031,17 +104556,12 @@ }, { "id": 7695, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -143049,17 +104569,12 @@ }, { "id": 7696, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -143067,17 +104582,12 @@ }, { "id": 7697, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -143086,17 +104596,12 @@ }, { "id": 7698, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -143105,17 +104610,12 @@ }, { "id": 7699, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -143124,17 +104624,12 @@ }, { "id": 7700, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -143143,17 +104638,12 @@ }, { "id": 7701, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -143161,17 +104651,12 @@ }, { "id": 7702, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -143179,17 +104664,12 @@ }, { "id": 7703, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -143197,17 +104677,12 @@ }, { "id": 7704, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -143215,17 +104690,12 @@ }, { "id": 7705, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -143233,17 +104703,12 @@ }, { "id": 7706, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -143251,17 +104716,12 @@ }, { "id": 7707, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -143270,17 +104730,12 @@ }, { "id": 7708, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -143289,17 +104744,12 @@ }, { "id": 7709, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -143308,17 +104758,12 @@ }, { "id": 7710, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -143327,17 +104772,12 @@ }, { "id": 7711, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -143346,17 +104786,12 @@ }, { "id": 7712, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -143365,17 +104800,12 @@ }, { "id": 7713, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -143384,17 +104814,12 @@ }, { "id": 7714, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -143403,17 +104828,12 @@ }, { "id": 7715, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -143421,17 +104841,12 @@ }, { "id": 7716, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -143439,17 +104854,12 @@ }, { "id": 7717, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -143458,17 +104868,12 @@ }, { "id": 7718, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -143477,17 +104882,12 @@ }, { "id": 7719, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -143496,17 +104896,12 @@ }, { "id": 7720, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -143515,17 +104910,12 @@ }, { "id": 7721, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -143533,17 +104923,12 @@ }, { "id": 7722, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -143551,17 +104936,12 @@ }, { "id": 7723, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -143569,17 +104949,12 @@ }, { "id": 7724, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -143633,109 +105008,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 7728, "states": [ { "id": 7725, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 7726, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 7727, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 7728, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 7729, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 7730, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -143774,45 +105119,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 7734, "states": [ { "id": 7731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 7732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -143821,17 +105156,12 @@ }, { "id": 7733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -143840,34 +105170,24 @@ }, { "id": 7734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 7735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -143876,17 +105196,12 @@ }, { "id": 7736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -143895,115 +105210,80 @@ }, { "id": 7737, - "air": false, - "is_solid": false, + "state_flags": 4, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 7739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 7740, - "air": false, - "is_solid": false, + "state_flags": 4, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 7741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 7742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 7743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -144011,17 +105291,12 @@ }, { "id": 7744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144031,17 +105306,12 @@ }, { "id": 7745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144051,17 +105321,12 @@ }, { "id": 7746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -144069,17 +105334,12 @@ }, { "id": 7747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144089,17 +105349,12 @@ }, { "id": 7748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144109,34 +105364,24 @@ }, { "id": 7749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 7750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144144,17 +105389,12 @@ }, { "id": 7751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144162,34 +105402,24 @@ }, { "id": 7752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 7753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144197,17 +105427,12 @@ }, { "id": 7754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144215,17 +105440,12 @@ }, { "id": 7755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -144233,17 +105453,12 @@ }, { "id": 7756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144253,17 +105468,12 @@ }, { "id": 7757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144273,17 +105483,12 @@ }, { "id": 7758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -144291,17 +105496,12 @@ }, { "id": 7759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144311,17 +105511,12 @@ }, { "id": 7760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144331,34 +105526,24 @@ }, { "id": 7761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 7762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144366,17 +105551,12 @@ }, { "id": 7763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144384,34 +105564,24 @@ }, { "id": 7764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 7765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144419,17 +105589,12 @@ }, { "id": 7766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -144437,17 +105602,12 @@ }, { "id": 7767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -144455,17 +105615,12 @@ }, { "id": 7768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144475,17 +105630,12 @@ }, { "id": 7769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144495,17 +105645,12 @@ }, { "id": 7770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -144513,17 +105658,12 @@ }, { "id": 7771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144533,17 +105673,12 @@ }, { "id": 7772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144553,34 +105688,24 @@ }, { "id": 7773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 7774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -144588,17 +105713,12 @@ }, { "id": 7775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -144606,34 +105726,24 @@ }, { "id": 7776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 7777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -144641,17 +105751,12 @@ }, { "id": 7778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -144659,17 +105764,12 @@ }, { "id": 7779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -144678,17 +105778,12 @@ }, { "id": 7780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144699,17 +105794,12 @@ }, { "id": 7781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144720,17 +105810,12 @@ }, { "id": 7782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -144739,17 +105824,12 @@ }, { "id": 7783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144760,17 +105840,12 @@ }, { "id": 7784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144781,34 +105856,24 @@ }, { "id": 7785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -144817,17 +105882,12 @@ }, { "id": 7787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -144836,34 +105896,24 @@ }, { "id": 7788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -144872,17 +105922,12 @@ }, { "id": 7790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -144891,17 +105936,12 @@ }, { "id": 7791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -144910,17 +105950,12 @@ }, { "id": 7792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144931,17 +105966,12 @@ }, { "id": 7793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144952,17 +105982,12 @@ }, { "id": 7794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -144971,17 +105996,12 @@ }, { "id": 7795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -144992,17 +106012,12 @@ }, { "id": 7796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145013,34 +106028,24 @@ }, { "id": 7797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145049,17 +106054,12 @@ }, { "id": 7799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145068,34 +106068,24 @@ }, { "id": 7800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145104,17 +106094,12 @@ }, { "id": 7802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145123,17 +106108,12 @@ }, { "id": 7803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -145141,17 +106121,12 @@ }, { "id": 7804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145161,17 +106136,12 @@ }, { "id": 7805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145181,17 +106151,12 @@ }, { "id": 7806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -145199,17 +106164,12 @@ }, { "id": 7807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145219,17 +106179,12 @@ }, { "id": 7808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145239,34 +106194,24 @@ }, { "id": 7809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 7810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -145274,17 +106219,12 @@ }, { "id": 7811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -145292,34 +106232,24 @@ }, { "id": 7812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 7813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -145327,17 +106257,12 @@ }, { "id": 7814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -145345,17 +106270,12 @@ }, { "id": 7815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -145364,17 +106284,12 @@ }, { "id": 7816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145385,17 +106300,12 @@ }, { "id": 7817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145406,17 +106316,12 @@ }, { "id": 7818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -145425,17 +106330,12 @@ }, { "id": 7819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145446,17 +106346,12 @@ }, { "id": 7820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145467,34 +106362,24 @@ }, { "id": 7821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145503,17 +106388,12 @@ }, { "id": 7823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145522,34 +106402,24 @@ }, { "id": 7824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145558,17 +106428,12 @@ }, { "id": 7826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145577,17 +106442,12 @@ }, { "id": 7827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -145596,17 +106456,12 @@ }, { "id": 7828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145617,17 +106472,12 @@ }, { "id": 7829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145638,17 +106488,12 @@ }, { "id": 7830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -145657,17 +106502,12 @@ }, { "id": 7831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145678,17 +106518,12 @@ }, { "id": 7832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -145699,34 +106534,24 @@ }, { "id": 7833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145735,17 +106560,12 @@ }, { "id": 7835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145754,34 +106574,24 @@ }, { "id": 7836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 7837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145790,17 +106600,12 @@ }, { "id": 7838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -145809,17 +106614,12 @@ }, { "id": 7839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -145827,17 +106627,12 @@ }, { "id": 7840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -145846,17 +106641,12 @@ }, { "id": 7841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -145865,17 +106655,12 @@ }, { "id": 7842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -145883,17 +106668,12 @@ }, { "id": 7843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -145902,17 +106682,12 @@ }, { "id": 7844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -145921,119 +106696,84 @@ }, { "id": 7845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 7846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 7849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -146042,17 +106782,12 @@ }, { "id": 7852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146062,17 +106797,12 @@ }, { "id": 7853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146082,17 +106812,12 @@ }, { "id": 7854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -146101,17 +106826,12 @@ }, { "id": 7855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146121,17 +106841,12 @@ }, { "id": 7856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146141,17 +106856,12 @@ }, { "id": 7857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -146159,17 +106869,12 @@ }, { "id": 7858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146177,17 +106882,12 @@ }, { "id": 7859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146195,17 +106895,12 @@ }, { "id": 7860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -146213,17 +106908,12 @@ }, { "id": 7861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146231,17 +106921,12 @@ }, { "id": 7862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146249,17 +106934,12 @@ }, { "id": 7863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -146268,17 +106948,12 @@ }, { "id": 7864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146288,17 +106963,12 @@ }, { "id": 7865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146308,17 +106978,12 @@ }, { "id": 7866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -146327,17 +106992,12 @@ }, { "id": 7867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146347,17 +107007,12 @@ }, { "id": 7868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146367,17 +107022,12 @@ }, { "id": 7869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -146385,17 +107035,12 @@ }, { "id": 7870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146403,17 +107048,12 @@ }, { "id": 7871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146421,17 +107061,12 @@ }, { "id": 7872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -146439,17 +107074,12 @@ }, { "id": 7873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146457,17 +107087,12 @@ }, { "id": 7874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -146475,17 +107100,12 @@ }, { "id": 7875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -146494,17 +107114,12 @@ }, { "id": 7876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146514,17 +107129,12 @@ }, { "id": 7877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146534,17 +107144,12 @@ }, { "id": 7878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -146553,17 +107158,12 @@ }, { "id": 7879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146573,17 +107173,12 @@ }, { "id": 7880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146593,17 +107188,12 @@ }, { "id": 7881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -146611,17 +107201,12 @@ }, { "id": 7882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -146629,17 +107214,12 @@ }, { "id": 7883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -146647,17 +107227,12 @@ }, { "id": 7884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -146665,17 +107240,12 @@ }, { "id": 7885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -146683,17 +107253,12 @@ }, { "id": 7886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -146701,17 +107266,12 @@ }, { "id": 7887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -146721,17 +107281,12 @@ }, { "id": 7888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146742,17 +107297,12 @@ }, { "id": 7889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146763,17 +107313,12 @@ }, { "id": 7890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -146783,17 +107328,12 @@ }, { "id": 7891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146804,17 +107344,12 @@ }, { "id": 7892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146825,17 +107360,12 @@ }, { "id": 7893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -146843,17 +107373,12 @@ }, { "id": 7894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -146862,17 +107387,12 @@ }, { "id": 7895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -146881,17 +107401,12 @@ }, { "id": 7896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -146899,17 +107414,12 @@ }, { "id": 7897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -146918,17 +107428,12 @@ }, { "id": 7898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -146937,17 +107442,12 @@ }, { "id": 7899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -146957,17 +107457,12 @@ }, { "id": 7900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146978,17 +107473,12 @@ }, { "id": 7901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -146999,17 +107489,12 @@ }, { "id": 7902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147019,17 +107504,12 @@ }, { "id": 7903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147040,17 +107520,12 @@ }, { "id": 7904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147061,17 +107536,12 @@ }, { "id": 7905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -147079,17 +107549,12 @@ }, { "id": 7906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147098,17 +107563,12 @@ }, { "id": 7907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147117,17 +107577,12 @@ }, { "id": 7908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -147135,17 +107590,12 @@ }, { "id": 7909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147154,17 +107604,12 @@ }, { "id": 7910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147173,17 +107618,12 @@ }, { "id": 7911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147192,17 +107632,12 @@ }, { "id": 7912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147212,17 +107647,12 @@ }, { "id": 7913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147232,17 +107662,12 @@ }, { "id": 7914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147251,17 +107676,12 @@ }, { "id": 7915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147271,17 +107691,12 @@ }, { "id": 7916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147291,17 +107706,12 @@ }, { "id": 7917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -147309,17 +107719,12 @@ }, { "id": 7918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -147327,17 +107732,12 @@ }, { "id": 7919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -147345,17 +107745,12 @@ }, { "id": 7920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -147363,17 +107758,12 @@ }, { "id": 7921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -147381,17 +107771,12 @@ }, { "id": 7922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -147399,17 +107784,12 @@ }, { "id": 7923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147419,17 +107799,12 @@ }, { "id": 7924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147440,17 +107815,12 @@ }, { "id": 7925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147461,17 +107831,12 @@ }, { "id": 7926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147481,17 +107846,12 @@ }, { "id": 7927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147502,17 +107862,12 @@ }, { "id": 7928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147523,17 +107878,12 @@ }, { "id": 7929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -147541,17 +107891,12 @@ }, { "id": 7930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147560,17 +107905,12 @@ }, { "id": 7931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147579,17 +107919,12 @@ }, { "id": 7932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -147597,17 +107932,12 @@ }, { "id": 7933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147616,17 +107946,12 @@ }, { "id": 7934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147635,17 +107960,12 @@ }, { "id": 7935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147655,17 +107975,12 @@ }, { "id": 7936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147676,17 +107991,12 @@ }, { "id": 7937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147697,17 +108007,12 @@ }, { "id": 7938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -147717,17 +108022,12 @@ }, { "id": 7939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147738,17 +108038,12 @@ }, { "id": 7940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147759,17 +108054,12 @@ }, { "id": 7941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -147777,17 +108067,12 @@ }, { "id": 7942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147796,17 +108081,12 @@ }, { "id": 7943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147815,17 +108095,12 @@ }, { "id": 7944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -147833,17 +108108,12 @@ }, { "id": 7945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147852,17 +108122,12 @@ }, { "id": 7946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -147871,17 +108136,12 @@ }, { "id": 7947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -147889,17 +108149,12 @@ }, { "id": 7948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147908,17 +108163,12 @@ }, { "id": 7949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147927,17 +108177,12 @@ }, { "id": 7950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -147945,17 +108190,12 @@ }, { "id": 7951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147964,17 +108204,12 @@ }, { "id": 7952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -147983,119 +108218,84 @@ }, { "id": 7953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 7954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 7957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 7959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -148104,17 +108304,12 @@ }, { "id": 7960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148124,17 +108319,12 @@ }, { "id": 7961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148144,17 +108334,12 @@ }, { "id": 7962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -148163,17 +108348,12 @@ }, { "id": 7963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148183,17 +108363,12 @@ }, { "id": 7964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148203,17 +108378,12 @@ }, { "id": 7965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -148221,17 +108391,12 @@ }, { "id": 7966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148239,17 +108404,12 @@ }, { "id": 7967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148257,17 +108417,12 @@ }, { "id": 7968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -148275,17 +108430,12 @@ }, { "id": 7969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148293,17 +108443,12 @@ }, { "id": 7970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148311,17 +108456,12 @@ }, { "id": 7971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -148330,17 +108470,12 @@ }, { "id": 7972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148350,17 +108485,12 @@ }, { "id": 7973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148370,17 +108500,12 @@ }, { "id": 7974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -148389,17 +108514,12 @@ }, { "id": 7975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148409,17 +108529,12 @@ }, { "id": 7976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148429,17 +108544,12 @@ }, { "id": 7977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -148447,17 +108557,12 @@ }, { "id": 7978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148465,17 +108570,12 @@ }, { "id": 7979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148483,17 +108583,12 @@ }, { "id": 7980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -148501,17 +108596,12 @@ }, { "id": 7981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148519,17 +108609,12 @@ }, { "id": 7982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -148537,17 +108622,12 @@ }, { "id": 7983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -148556,17 +108636,12 @@ }, { "id": 7984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148576,17 +108651,12 @@ }, { "id": 7985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148596,17 +108666,12 @@ }, { "id": 7986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -148615,17 +108680,12 @@ }, { "id": 7987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148635,17 +108695,12 @@ }, { "id": 7988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148655,17 +108710,12 @@ }, { "id": 7989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -148673,17 +108723,12 @@ }, { "id": 7990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -148691,17 +108736,12 @@ }, { "id": 7991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -148709,17 +108749,12 @@ }, { "id": 7992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -148727,17 +108762,12 @@ }, { "id": 7993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -148745,17 +108775,12 @@ }, { "id": 7994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -148763,17 +108788,12 @@ }, { "id": 7995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -148783,17 +108803,12 @@ }, { "id": 7996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148804,17 +108819,12 @@ }, { "id": 7997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148825,17 +108835,12 @@ }, { "id": 7998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -148845,17 +108850,12 @@ }, { "id": 7999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148866,17 +108866,12 @@ }, { "id": 8000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -148887,17 +108882,12 @@ }, { "id": 8001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -148905,17 +108895,12 @@ }, { "id": 8002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -148924,17 +108909,12 @@ }, { "id": 8003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -148943,17 +108923,12 @@ }, { "id": 8004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -148961,17 +108936,12 @@ }, { "id": 8005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -148980,17 +108950,12 @@ }, { "id": 8006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -148999,17 +108964,12 @@ }, { "id": 8007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149019,17 +108979,12 @@ }, { "id": 8008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149040,17 +108995,12 @@ }, { "id": 8009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149061,17 +109011,12 @@ }, { "id": 8010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149081,17 +109026,12 @@ }, { "id": 8011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149102,17 +109042,12 @@ }, { "id": 8012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149123,17 +109058,12 @@ }, { "id": 8013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -149141,17 +109071,12 @@ }, { "id": 8014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149160,17 +109085,12 @@ }, { "id": 8015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149179,17 +109099,12 @@ }, { "id": 8016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -149197,17 +109112,12 @@ }, { "id": 8017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149216,17 +109126,12 @@ }, { "id": 8018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149235,17 +109140,12 @@ }, { "id": 8019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149254,17 +109154,12 @@ }, { "id": 8020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149274,17 +109169,12 @@ }, { "id": 8021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149294,17 +109184,12 @@ }, { "id": 8022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149313,17 +109198,12 @@ }, { "id": 8023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149333,17 +109213,12 @@ }, { "id": 8024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149353,17 +109228,12 @@ }, { "id": 8025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -149371,17 +109241,12 @@ }, { "id": 8026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -149389,17 +109254,12 @@ }, { "id": 8027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -149407,17 +109267,12 @@ }, { "id": 8028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -149425,17 +109280,12 @@ }, { "id": 8029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -149443,17 +109293,12 @@ }, { "id": 8030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -149461,17 +109306,12 @@ }, { "id": 8031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149481,17 +109321,12 @@ }, { "id": 8032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149502,17 +109337,12 @@ }, { "id": 8033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149523,17 +109353,12 @@ }, { "id": 8034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149543,17 +109368,12 @@ }, { "id": 8035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149564,17 +109384,12 @@ }, { "id": 8036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149585,17 +109400,12 @@ }, { "id": 8037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -149603,17 +109413,12 @@ }, { "id": 8038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149622,17 +109427,12 @@ }, { "id": 8039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149641,17 +109441,12 @@ }, { "id": 8040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -149659,17 +109454,12 @@ }, { "id": 8041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149678,17 +109468,12 @@ }, { "id": 8042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149697,17 +109482,12 @@ }, { "id": 8043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149717,17 +109497,12 @@ }, { "id": 8044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149738,17 +109513,12 @@ }, { "id": 8045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149759,17 +109529,12 @@ }, { "id": 8046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -149779,17 +109544,12 @@ }, { "id": 8047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149800,17 +109560,12 @@ }, { "id": 8048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -149821,17 +109576,12 @@ }, { "id": 8049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -149839,17 +109589,12 @@ }, { "id": 8050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149858,17 +109603,12 @@ }, { "id": 8051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149877,17 +109617,12 @@ }, { "id": 8052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -149895,17 +109630,12 @@ }, { "id": 8053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149914,17 +109644,12 @@ }, { "id": 8054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -149969,17 +109694,12 @@ "states": [ { "id": 8055, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -150022,17 +109742,12 @@ "states": [ { "id": 8056, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -150071,27 +109786,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 8088, "states": [ { "id": 8057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -150100,17 +109810,12 @@ }, { "id": 8058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -150118,17 +109823,12 @@ }, { "id": 8059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -150137,17 +109837,12 @@ }, { "id": 8060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -150155,17 +109850,12 @@ }, { "id": 8061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -150173,17 +109863,12 @@ }, { "id": 8062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -150191,17 +109876,12 @@ }, { "id": 8063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -150209,17 +109889,12 @@ }, { "id": 8064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -150227,17 +109902,12 @@ }, { "id": 8065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -150245,17 +109915,12 @@ }, { "id": 8066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -150263,17 +109928,12 @@ }, { "id": 8067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -150281,17 +109941,12 @@ }, { "id": 8068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -150299,85 +109954,60 @@ }, { "id": 8069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 8070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 8071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 8072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 8073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -150386,34 +110016,24 @@ }, { "id": 8074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 8075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -150422,34 +110042,24 @@ }, { "id": 8076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 8077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -150457,34 +110067,24 @@ }, { "id": 8078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 8079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -150492,34 +110092,24 @@ }, { "id": 8080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 8081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -150527,34 +110117,24 @@ }, { "id": 8082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 8083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -150562,85 +110142,60 @@ }, { "id": 8084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 8085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 8086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 8087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 8088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -150679,26 +110234,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 8100, "states": [ { "id": 8089, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -150706,17 +110256,12 @@ }, { "id": 8090, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -150724,17 +110269,12 @@ }, { "id": 8091, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -150743,17 +110283,12 @@ }, { "id": 8092, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -150762,17 +110297,12 @@ }, { "id": 8093, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -150781,17 +110311,12 @@ }, { "id": 8094, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -150800,17 +110325,12 @@ }, { "id": 8095, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -150819,17 +110339,12 @@ }, { "id": 8096, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -150838,17 +110353,12 @@ }, { "id": 8097, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -150857,17 +110367,12 @@ }, { "id": 8098, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -150876,17 +110381,12 @@ }, { "id": 8099, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -150894,17 +110394,12 @@ }, { "id": 8100, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -150912,17 +110407,12 @@ }, { "id": 8101, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -150931,17 +110421,12 @@ }, { "id": 8102, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -150950,17 +110435,12 @@ }, { "id": 8103, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -150969,17 +110449,12 @@ }, { "id": 8104, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -150988,17 +110463,12 @@ }, { "id": 8105, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -151006,17 +110476,12 @@ }, { "id": 8106, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -151024,17 +110489,12 @@ }, { "id": 8107, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -151042,17 +110502,12 @@ }, { "id": 8108, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -151060,17 +110515,12 @@ }, { "id": 8109, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -151078,17 +110528,12 @@ }, { "id": 8110, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -151096,17 +110541,12 @@ }, { "id": 8111, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -151115,17 +110555,12 @@ }, { "id": 8112, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -151134,17 +110569,12 @@ }, { "id": 8113, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -151153,17 +110583,12 @@ }, { "id": 8114, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -151172,17 +110597,12 @@ }, { "id": 8115, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -151191,17 +110611,12 @@ }, { "id": 8116, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -151210,17 +110625,12 @@ }, { "id": 8117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -151229,17 +110639,12 @@ }, { "id": 8118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -151248,17 +110653,12 @@ }, { "id": 8119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -151266,17 +110666,12 @@ }, { "id": 8120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -151284,17 +110679,12 @@ }, { "id": 8121, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -151303,17 +110693,12 @@ }, { "id": 8122, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -151322,17 +110707,12 @@ }, { "id": 8123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -151341,17 +110721,12 @@ }, { "id": 8124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -151360,17 +110735,12 @@ }, { "id": 8125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -151378,17 +110748,12 @@ }, { "id": 8126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -151396,17 +110761,12 @@ }, { "id": 8127, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -151414,17 +110774,12 @@ }, { "id": 8128, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -151432,17 +110787,12 @@ }, { "id": 8129, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -151450,17 +110800,12 @@ }, { "id": 8130, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -151468,17 +110813,12 @@ }, { "id": 8131, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -151487,17 +110827,12 @@ }, { "id": 8132, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -151506,17 +110841,12 @@ }, { "id": 8133, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -151525,17 +110855,12 @@ }, { "id": 8134, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -151544,17 +110869,12 @@ }, { "id": 8135, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -151563,17 +110883,12 @@ }, { "id": 8136, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -151582,17 +110897,12 @@ }, { "id": 8137, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -151601,17 +110911,12 @@ }, { "id": 8138, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -151620,17 +110925,12 @@ }, { "id": 8139, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -151638,17 +110938,12 @@ }, { "id": 8140, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -151656,17 +110951,12 @@ }, { "id": 8141, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -151675,17 +110965,12 @@ }, { "id": 8142, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -151694,17 +110979,12 @@ }, { "id": 8143, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -151713,17 +110993,12 @@ }, { "id": 8144, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -151732,17 +111007,12 @@ }, { "id": 8145, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -151750,17 +111020,12 @@ }, { "id": 8146, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -151768,17 +111033,12 @@ }, { "id": 8147, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -151786,17 +111046,12 @@ }, { "id": 8148, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -151804,17 +111059,12 @@ }, { "id": 8149, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -151822,17 +111072,12 @@ }, { "id": 8150, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -151840,17 +111085,12 @@ }, { "id": 8151, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -151859,17 +111099,12 @@ }, { "id": 8152, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -151878,17 +111113,12 @@ }, { "id": 8153, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -151897,17 +111127,12 @@ }, { "id": 8154, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -151916,17 +111141,12 @@ }, { "id": 8155, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -151935,17 +111155,12 @@ }, { "id": 8156, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -151954,17 +111169,12 @@ }, { "id": 8157, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -151973,17 +111183,12 @@ }, { "id": 8158, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -151992,17 +111197,12 @@ }, { "id": 8159, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -152010,17 +111210,12 @@ }, { "id": 8160, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -152028,17 +111223,12 @@ }, { "id": 8161, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -152047,17 +111237,12 @@ }, { "id": 8162, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -152066,17 +111251,12 @@ }, { "id": 8163, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -152085,17 +111265,12 @@ }, { "id": 8164, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -152104,17 +111279,12 @@ }, { "id": 8165, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -152122,17 +111292,12 @@ }, { "id": 8166, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -152140,17 +111305,12 @@ }, { "id": 8167, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -152158,17 +111318,12 @@ }, { "id": 8168, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -152245,64 +111400,44 @@ ] }, "properties": [ - 357631796 + -287216373 ], "default_state_id": 8169, "states": [ { "id": 8169, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8170, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8171, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8172, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -152352,17 +111487,12 @@ "states": [ { "id": 8173, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 18 ], @@ -152411,24 +111541,19 @@ ] }, "properties": [ - -1088906725, - -1088906724, - -1088906723 + -895482838, + -895482837, + -895482836 ], "default_state_id": 8181, "states": [ { "id": 8174, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152437,16 +111562,11 @@ }, { "id": 8175, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152455,16 +111575,11 @@ }, { "id": 8176, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152473,16 +111588,11 @@ }, { "id": 8177, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152491,16 +111601,11 @@ }, { "id": 8178, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152509,16 +111614,11 @@ }, { "id": 8179, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152527,16 +111627,11 @@ }, { "id": 8180, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152545,16 +111640,11 @@ }, { "id": 8181, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 125, 126 @@ -152599,16 +111689,11 @@ "states": [ { "id": 8182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152661,22 +111746,17 @@ ] }, "properties": [ - -752381395 + -1397229564 ], "default_state_id": 8183, "states": [ { "id": 8183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152697,16 +111777,11 @@ }, { "id": 8184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152727,16 +111802,11 @@ }, { "id": 8185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152793,16 +111863,11 @@ "states": [ { "id": 8186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152855,22 +111920,17 @@ ] }, "properties": [ - -752381395 + -1397229564 ], "default_state_id": 8187, "states": [ { "id": 8187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152891,16 +111951,11 @@ }, { "id": 8188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152921,16 +111976,11 @@ }, { "id": 8189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 127, 128, @@ -152966,16 +112016,11 @@ "states": [ { "id": 8190, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 14 } @@ -152992,24 +112037,19 @@ "blast_resistance": 3600000.0, "item_id": 405, "properties": [ - -246027184, - -1870206692 + -52603297, + 1877134791 ], "default_state_id": 8195, "states": [ { "id": 8191, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142, 143 @@ -153017,17 +112057,12 @@ }, { "id": 8192, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142, 143 @@ -153035,17 +112070,12 @@ }, { "id": 8193, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142, 143 @@ -153053,17 +112083,12 @@ }, { "id": 8194, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142, 143 @@ -153071,68 +112096,48 @@ }, { "id": 8195, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142 ] }, { "id": 8196, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142 ] }, { "id": 8197, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142 ] }, { "id": 8198, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 142 ] @@ -153175,17 +112180,12 @@ "states": [ { "id": 8199, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -153223,16 +112223,11 @@ "states": [ { "id": 8200, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ] @@ -153271,40 +112266,30 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 8202, "states": [ { "id": 8201, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 8202, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -153357,199 +112342,139 @@ ] }, "properties": [ - 356737073, - -1870206692 + -288111096, + 1877134791 ], "default_state_id": 8203, "states": [ { "id": 8203, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 145 ] }, { "id": 8204, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 146 ] }, { "id": 8205, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 147 ] }, { "id": 8206, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 148 ] }, { "id": 8207, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 149 ] }, { "id": 8208, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 150 ] }, { "id": 8209, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 151 ] }, { "id": 8210, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 152 ] }, { "id": 8211, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 153 ] }, { "id": 8212, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 154 ] }, { "id": 8213, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 155 ] }, { "id": 8214, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 156 ] @@ -153588,26 +112513,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 8226, "states": [ { "id": 8215, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -153615,17 +112535,12 @@ }, { "id": 8216, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -153633,17 +112548,12 @@ }, { "id": 8217, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -153652,17 +112562,12 @@ }, { "id": 8218, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -153671,17 +112576,12 @@ }, { "id": 8219, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -153690,17 +112590,12 @@ }, { "id": 8220, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -153709,17 +112604,12 @@ }, { "id": 8221, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -153728,17 +112618,12 @@ }, { "id": 8222, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -153747,17 +112632,12 @@ }, { "id": 8223, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -153766,17 +112646,12 @@ }, { "id": 8224, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -153785,17 +112660,12 @@ }, { "id": 8225, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -153803,17 +112673,12 @@ }, { "id": 8226, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -153821,17 +112686,12 @@ }, { "id": 8227, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -153840,17 +112700,12 @@ }, { "id": 8228, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -153859,17 +112714,12 @@ }, { "id": 8229, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -153878,17 +112728,12 @@ }, { "id": 8230, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -153897,17 +112742,12 @@ }, { "id": 8231, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -153915,17 +112755,12 @@ }, { "id": 8232, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -153933,17 +112768,12 @@ }, { "id": 8233, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -153951,17 +112781,12 @@ }, { "id": 8234, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -153969,17 +112794,12 @@ }, { "id": 8235, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -153987,17 +112807,12 @@ }, { "id": 8236, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -154005,17 +112820,12 @@ }, { "id": 8237, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -154024,17 +112834,12 @@ }, { "id": 8238, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -154043,17 +112848,12 @@ }, { "id": 8239, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -154062,17 +112862,12 @@ }, { "id": 8240, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -154081,17 +112876,12 @@ }, { "id": 8241, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -154100,17 +112890,12 @@ }, { "id": 8242, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -154119,17 +112904,12 @@ }, { "id": 8243, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -154138,17 +112918,12 @@ }, { "id": 8244, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -154157,17 +112932,12 @@ }, { "id": 8245, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -154175,17 +112945,12 @@ }, { "id": 8246, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -154193,17 +112958,12 @@ }, { "id": 8247, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -154212,17 +112972,12 @@ }, { "id": 8248, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -154231,17 +112986,12 @@ }, { "id": 8249, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -154250,17 +113000,12 @@ }, { "id": 8250, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -154269,17 +113014,12 @@ }, { "id": 8251, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -154287,17 +113027,12 @@ }, { "id": 8252, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -154305,17 +113040,12 @@ }, { "id": 8253, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -154323,17 +113053,12 @@ }, { "id": 8254, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -154341,17 +113066,12 @@ }, { "id": 8255, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -154359,17 +113079,12 @@ }, { "id": 8256, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -154377,17 +113092,12 @@ }, { "id": 8257, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -154396,17 +113106,12 @@ }, { "id": 8258, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -154415,17 +113120,12 @@ }, { "id": 8259, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -154434,17 +113134,12 @@ }, { "id": 8260, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -154453,17 +113148,12 @@ }, { "id": 8261, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -154472,17 +113162,12 @@ }, { "id": 8262, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -154491,17 +113176,12 @@ }, { "id": 8263, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -154510,17 +113190,12 @@ }, { "id": 8264, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -154529,17 +113204,12 @@ }, { "id": 8265, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -154547,17 +113217,12 @@ }, { "id": 8266, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -154565,17 +113230,12 @@ }, { "id": 8267, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -154584,17 +113244,12 @@ }, { "id": 8268, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -154603,17 +113258,12 @@ }, { "id": 8269, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -154622,17 +113272,12 @@ }, { "id": 8270, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -154641,17 +113286,12 @@ }, { "id": 8271, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -154659,17 +113299,12 @@ }, { "id": 8272, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -154677,17 +113312,12 @@ }, { "id": 8273, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -154695,17 +113325,12 @@ }, { "id": 8274, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -154713,17 +113338,12 @@ }, { "id": 8275, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -154731,17 +113351,12 @@ }, { "id": 8276, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -154749,17 +113364,12 @@ }, { "id": 8277, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -154768,17 +113378,12 @@ }, { "id": 8278, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -154787,17 +113392,12 @@ }, { "id": 8279, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -154806,17 +113406,12 @@ }, { "id": 8280, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -154825,17 +113420,12 @@ }, { "id": 8281, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -154844,17 +113434,12 @@ }, { "id": 8282, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -154863,17 +113448,12 @@ }, { "id": 8283, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -154882,17 +113462,12 @@ }, { "id": 8284, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -154901,17 +113476,12 @@ }, { "id": 8285, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -154919,17 +113489,12 @@ }, { "id": 8286, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -154937,17 +113502,12 @@ }, { "id": 8287, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -154956,17 +113516,12 @@ }, { "id": 8288, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -154975,17 +113530,12 @@ }, { "id": 8289, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -154994,17 +113544,12 @@ }, { "id": 8290, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -155013,17 +113558,12 @@ }, { "id": 8291, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -155031,17 +113571,12 @@ }, { "id": 8292, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -155049,17 +113584,12 @@ }, { "id": 8293, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -155067,17 +113597,12 @@ }, { "id": 8294, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -155160,17 +113685,12 @@ "states": [ { "id": 8295, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -155252,17 +113772,12 @@ "states": [ { "id": 8296, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -155332,24 +113847,19 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 8298, "states": [ { "id": 8297, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155357,17 +113867,12 @@ }, { "id": 8298, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155375,17 +113880,12 @@ }, { "id": 8299, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155393,17 +113893,12 @@ }, { "id": 8300, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155411,17 +113906,12 @@ }, { "id": 8301, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155429,17 +113919,12 @@ }, { "id": 8302, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155447,17 +113932,12 @@ }, { "id": 8303, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155465,17 +113945,12 @@ }, { "id": 8304, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 22.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -155515,234 +113990,154 @@ ] }, "properties": [ - 292609987, - -1870206692, - -634074493 + 486033874, + 1877134791, + -440650606 ], "default_state_id": 8314, "states": [ { "id": 8305, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8306, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8307, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8308, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8309, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8310, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8311, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8312, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8313, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8314, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8315, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8316, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8317, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8318, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8319, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8320, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -155779,1806 +114174,1166 @@ ] }, "properties": [ - 292609987, - 25290316, - -243022308, - -141120732, - -634074493, - -136500244, - -242482226 + 486033874, + 218714203, + -49598421, + 52303155, + -440650606, + 56923643, + -49058339 ], "default_state_id": 8448, "states": [ { "id": 8321, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8322, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8323, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8324, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8325, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8326, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8327, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8328, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8329, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8330, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8331, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8332, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8333, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8334, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8335, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8336, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8337, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8338, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8339, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8340, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8341, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8342, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8343, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8344, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8345, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8346, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8347, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8348, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8349, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8350, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8351, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8352, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8353, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8354, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8355, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8356, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8357, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8358, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8359, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8360, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8361, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8362, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8363, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8364, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8365, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8366, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8367, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8368, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8369, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8370, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8371, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8372, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8373, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8374, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8375, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8376, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8377, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8378, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8379, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8380, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8381, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8382, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8383, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8384, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8385, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8386, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8387, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8388, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8389, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8390, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8391, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8392, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8393, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8394, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8395, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8396, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8397, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8398, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8399, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8400, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8401, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8406, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8407, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8408, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8409, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8410, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8411, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8412, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8413, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8414, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8415, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8416, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8417, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8418, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8419, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8420, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8421, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8422, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8423, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8424, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8425, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8426, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8427, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8428, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8429, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8430, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8431, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8432, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8433, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8434, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8435, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8436, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8437, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8438, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8439, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8440, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8441, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8442, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8443, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8444, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8445, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8446, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8447, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8448, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -157619,17 +115374,12 @@ "states": [ { "id": 8449, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BIT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -157668,26 +115418,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 8461, "states": [ { "id": 8450, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -157695,17 +115440,12 @@ }, { "id": 8451, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -157713,17 +115453,12 @@ }, { "id": 8452, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -157732,17 +115467,12 @@ }, { "id": 8453, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -157751,17 +115481,12 @@ }, { "id": 8454, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -157770,17 +115495,12 @@ }, { "id": 8455, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -157789,17 +115509,12 @@ }, { "id": 8456, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -157808,17 +115523,12 @@ }, { "id": 8457, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -157827,17 +115537,12 @@ }, { "id": 8458, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -157846,17 +115551,12 @@ }, { "id": 8459, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -157865,17 +115565,12 @@ }, { "id": 8460, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -157883,17 +115578,12 @@ }, { "id": 8461, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -157901,17 +115591,12 @@ }, { "id": 8462, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -157920,17 +115605,12 @@ }, { "id": 8463, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -157939,17 +115619,12 @@ }, { "id": 8464, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -157958,17 +115633,12 @@ }, { "id": 8465, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -157977,17 +115647,12 @@ }, { "id": 8466, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -157995,17 +115660,12 @@ }, { "id": 8467, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -158013,17 +115673,12 @@ }, { "id": 8468, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -158031,17 +115686,12 @@ }, { "id": 8469, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -158049,17 +115699,12 @@ }, { "id": 8470, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -158067,17 +115712,12 @@ }, { "id": 8471, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -158085,17 +115725,12 @@ }, { "id": 8472, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -158104,17 +115739,12 @@ }, { "id": 8473, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -158123,17 +115753,12 @@ }, { "id": 8474, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -158142,17 +115767,12 @@ }, { "id": 8475, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -158161,17 +115781,12 @@ }, { "id": 8476, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -158180,17 +115795,12 @@ }, { "id": 8477, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -158199,17 +115809,12 @@ }, { "id": 8478, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -158218,17 +115823,12 @@ }, { "id": 8479, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -158237,17 +115837,12 @@ }, { "id": 8480, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -158255,17 +115850,12 @@ }, { "id": 8481, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -158273,17 +115863,12 @@ }, { "id": 8482, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -158292,17 +115877,12 @@ }, { "id": 8483, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -158311,17 +115891,12 @@ }, { "id": 8484, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -158330,17 +115905,12 @@ }, { "id": 8485, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -158349,17 +115919,12 @@ }, { "id": 8486, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -158367,17 +115932,12 @@ }, { "id": 8487, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -158385,17 +115945,12 @@ }, { "id": 8488, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -158403,17 +115958,12 @@ }, { "id": 8489, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -158421,17 +115971,12 @@ }, { "id": 8490, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -158439,17 +115984,12 @@ }, { "id": 8491, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -158457,17 +115997,12 @@ }, { "id": 8492, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -158476,17 +116011,12 @@ }, { "id": 8493, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -158495,17 +116025,12 @@ }, { "id": 8494, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -158514,17 +116039,12 @@ }, { "id": 8495, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -158533,17 +116053,12 @@ }, { "id": 8496, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -158552,17 +116067,12 @@ }, { "id": 8497, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -158571,17 +116081,12 @@ }, { "id": 8498, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -158590,17 +116095,12 @@ }, { "id": 8499, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -158609,17 +116109,12 @@ }, { "id": 8500, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -158627,17 +116122,12 @@ }, { "id": 8501, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -158645,17 +116135,12 @@ }, { "id": 8502, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -158664,17 +116149,12 @@ }, { "id": 8503, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -158683,17 +116163,12 @@ }, { "id": 8504, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -158702,17 +116177,12 @@ }, { "id": 8505, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -158721,17 +116191,12 @@ }, { "id": 8506, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -158739,17 +116204,12 @@ }, { "id": 8507, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -158757,17 +116217,12 @@ }, { "id": 8508, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -158775,17 +116230,12 @@ }, { "id": 8509, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -158793,17 +116243,12 @@ }, { "id": 8510, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -158811,17 +116256,12 @@ }, { "id": 8511, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -158829,17 +116269,12 @@ }, { "id": 8512, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -158848,17 +116283,12 @@ }, { "id": 8513, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -158867,17 +116297,12 @@ }, { "id": 8514, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -158886,17 +116311,12 @@ }, { "id": 8515, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -158905,17 +116325,12 @@ }, { "id": 8516, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -158924,17 +116339,12 @@ }, { "id": 8517, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -158943,17 +116353,12 @@ }, { "id": 8518, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -158962,17 +116367,12 @@ }, { "id": 8519, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -158981,17 +116381,12 @@ }, { "id": 8520, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -158999,17 +116394,12 @@ }, { "id": 8521, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -159017,17 +116407,12 @@ }, { "id": 8522, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -159036,17 +116421,12 @@ }, { "id": 8523, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -159055,17 +116435,12 @@ }, { "id": 8524, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -159074,17 +116449,12 @@ }, { "id": 8525, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -159093,17 +116463,12 @@ }, { "id": 8526, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -159111,17 +116476,12 @@ }, { "id": 8527, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -159129,17 +116489,12 @@ }, { "id": 8528, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -159147,17 +116502,12 @@ }, { "id": 8529, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -159197,26 +116547,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 8541, "states": [ { "id": 8530, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -159224,17 +116569,12 @@ }, { "id": 8531, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -159242,17 +116582,12 @@ }, { "id": 8532, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -159261,17 +116596,12 @@ }, { "id": 8533, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -159280,17 +116610,12 @@ }, { "id": 8534, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -159299,17 +116624,12 @@ }, { "id": 8535, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -159318,17 +116638,12 @@ }, { "id": 8536, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -159337,17 +116652,12 @@ }, { "id": 8537, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -159356,17 +116666,12 @@ }, { "id": 8538, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -159375,17 +116680,12 @@ }, { "id": 8539, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -159394,17 +116694,12 @@ }, { "id": 8540, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -159412,17 +116707,12 @@ }, { "id": 8541, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -159430,17 +116720,12 @@ }, { "id": 8542, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -159449,17 +116734,12 @@ }, { "id": 8543, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -159468,17 +116748,12 @@ }, { "id": 8544, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -159487,17 +116762,12 @@ }, { "id": 8545, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -159506,17 +116776,12 @@ }, { "id": 8546, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -159524,17 +116789,12 @@ }, { "id": 8547, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -159542,17 +116802,12 @@ }, { "id": 8548, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -159560,17 +116815,12 @@ }, { "id": 8549, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -159578,17 +116828,12 @@ }, { "id": 8550, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -159596,17 +116841,12 @@ }, { "id": 8551, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -159614,17 +116854,12 @@ }, { "id": 8552, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -159633,17 +116868,12 @@ }, { "id": 8553, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -159652,17 +116882,12 @@ }, { "id": 8554, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -159671,17 +116896,12 @@ }, { "id": 8555, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -159690,17 +116910,12 @@ }, { "id": 8556, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -159709,17 +116924,12 @@ }, { "id": 8557, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -159728,17 +116938,12 @@ }, { "id": 8558, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -159747,17 +116952,12 @@ }, { "id": 8559, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -159766,17 +116966,12 @@ }, { "id": 8560, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -159784,17 +116979,12 @@ }, { "id": 8561, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -159802,17 +116992,12 @@ }, { "id": 8562, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -159821,17 +117006,12 @@ }, { "id": 8563, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -159840,17 +117020,12 @@ }, { "id": 8564, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -159859,17 +117034,12 @@ }, { "id": 8565, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -159878,17 +117048,12 @@ }, { "id": 8566, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -159896,17 +117061,12 @@ }, { "id": 8567, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -159914,17 +117074,12 @@ }, { "id": 8568, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -159932,17 +117087,12 @@ }, { "id": 8569, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -159950,17 +117100,12 @@ }, { "id": 8570, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -159968,17 +117113,12 @@ }, { "id": 8571, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -159986,17 +117126,12 @@ }, { "id": 8572, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -160005,17 +117140,12 @@ }, { "id": 8573, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -160024,17 +117154,12 @@ }, { "id": 8574, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -160043,17 +117168,12 @@ }, { "id": 8575, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -160062,17 +117182,12 @@ }, { "id": 8576, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -160081,17 +117196,12 @@ }, { "id": 8577, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -160100,17 +117210,12 @@ }, { "id": 8578, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -160119,17 +117224,12 @@ }, { "id": 8579, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -160138,17 +117238,12 @@ }, { "id": 8580, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -160156,17 +117251,12 @@ }, { "id": 8581, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -160174,17 +117264,12 @@ }, { "id": 8582, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -160193,17 +117278,12 @@ }, { "id": 8583, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -160212,17 +117292,12 @@ }, { "id": 8584, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -160231,17 +117306,12 @@ }, { "id": 8585, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -160250,17 +117320,12 @@ }, { "id": 8586, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -160268,17 +117333,12 @@ }, { "id": 8587, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -160286,17 +117346,12 @@ }, { "id": 8588, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -160304,17 +117359,12 @@ }, { "id": 8589, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -160322,17 +117372,12 @@ }, { "id": 8590, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -160340,17 +117385,12 @@ }, { "id": 8591, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -160358,17 +117398,12 @@ }, { "id": 8592, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -160377,17 +117412,12 @@ }, { "id": 8593, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -160396,17 +117426,12 @@ }, { "id": 8594, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -160415,17 +117440,12 @@ }, { "id": 8595, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -160434,17 +117454,12 @@ }, { "id": 8596, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -160453,17 +117468,12 @@ }, { "id": 8597, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -160472,17 +117482,12 @@ }, { "id": 8598, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -160491,17 +117496,12 @@ }, { "id": 8599, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -160510,17 +117510,12 @@ }, { "id": 8600, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -160528,17 +117523,12 @@ }, { "id": 8601, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -160546,17 +117536,12 @@ }, { "id": 8602, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -160565,17 +117550,12 @@ }, { "id": 8603, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -160584,17 +117564,12 @@ }, { "id": 8604, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -160603,17 +117578,12 @@ }, { "id": 8605, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -160622,17 +117592,12 @@ }, { "id": 8606, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -160640,17 +117605,12 @@ }, { "id": 8607, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -160658,17 +117618,12 @@ }, { "id": 8608, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -160676,17 +117631,12 @@ }, { "id": 8609, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -160726,26 +117676,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 8621, "states": [ { "id": 8610, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -160753,17 +117698,12 @@ }, { "id": 8611, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -160771,17 +117711,12 @@ }, { "id": 8612, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -160790,17 +117725,12 @@ }, { "id": 8613, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -160809,17 +117739,12 @@ }, { "id": 8614, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -160828,17 +117753,12 @@ }, { "id": 8615, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -160847,17 +117767,12 @@ }, { "id": 8616, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -160866,17 +117781,12 @@ }, { "id": 8617, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -160885,17 +117795,12 @@ }, { "id": 8618, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -160904,17 +117809,12 @@ }, { "id": 8619, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -160923,17 +117823,12 @@ }, { "id": 8620, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -160941,17 +117836,12 @@ }, { "id": 8621, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -160959,17 +117849,12 @@ }, { "id": 8622, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -160978,17 +117863,12 @@ }, { "id": 8623, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -160997,17 +117877,12 @@ }, { "id": 8624, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -161016,17 +117891,12 @@ }, { "id": 8625, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -161035,17 +117905,12 @@ }, { "id": 8626, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -161053,17 +117918,12 @@ }, { "id": 8627, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -161071,17 +117931,12 @@ }, { "id": 8628, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -161089,17 +117944,12 @@ }, { "id": 8629, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -161107,17 +117957,12 @@ }, { "id": 8630, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -161125,17 +117970,12 @@ }, { "id": 8631, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -161143,17 +117983,12 @@ }, { "id": 8632, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -161162,17 +117997,12 @@ }, { "id": 8633, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -161181,17 +118011,12 @@ }, { "id": 8634, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -161200,17 +118025,12 @@ }, { "id": 8635, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -161219,17 +118039,12 @@ }, { "id": 8636, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -161238,17 +118053,12 @@ }, { "id": 8637, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -161257,17 +118067,12 @@ }, { "id": 8638, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -161276,17 +118081,12 @@ }, { "id": 8639, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -161295,17 +118095,12 @@ }, { "id": 8640, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -161313,17 +118108,12 @@ }, { "id": 8641, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -161331,17 +118121,12 @@ }, { "id": 8642, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -161350,17 +118135,12 @@ }, { "id": 8643, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -161369,17 +118149,12 @@ }, { "id": 8644, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -161388,17 +118163,12 @@ }, { "id": 8645, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -161407,17 +118177,12 @@ }, { "id": 8646, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -161425,17 +118190,12 @@ }, { "id": 8647, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -161443,17 +118203,12 @@ }, { "id": 8648, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -161461,17 +118216,12 @@ }, { "id": 8649, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -161479,17 +118229,12 @@ }, { "id": 8650, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -161497,17 +118242,12 @@ }, { "id": 8651, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -161515,17 +118255,12 @@ }, { "id": 8652, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -161534,17 +118269,12 @@ }, { "id": 8653, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -161553,17 +118283,12 @@ }, { "id": 8654, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -161572,17 +118297,12 @@ }, { "id": 8655, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -161591,17 +118311,12 @@ }, { "id": 8656, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -161610,17 +118325,12 @@ }, { "id": 8657, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -161629,17 +118339,12 @@ }, { "id": 8658, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -161648,17 +118353,12 @@ }, { "id": 8659, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -161667,17 +118367,12 @@ }, { "id": 8660, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -161685,17 +118380,12 @@ }, { "id": 8661, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -161703,17 +118393,12 @@ }, { "id": 8662, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -161722,17 +118407,12 @@ }, { "id": 8663, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -161741,17 +118421,12 @@ }, { "id": 8664, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -161760,17 +118435,12 @@ }, { "id": 8665, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -161779,17 +118449,12 @@ }, { "id": 8666, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -161797,17 +118462,12 @@ }, { "id": 8667, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -161815,17 +118475,12 @@ }, { "id": 8668, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -161833,17 +118488,12 @@ }, { "id": 8669, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -161851,17 +118501,12 @@ }, { "id": 8670, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -161869,17 +118514,12 @@ }, { "id": 8671, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -161887,17 +118527,12 @@ }, { "id": 8672, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -161906,17 +118541,12 @@ }, { "id": 8673, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -161925,17 +118555,12 @@ }, { "id": 8674, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -161944,17 +118569,12 @@ }, { "id": 8675, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -161963,17 +118583,12 @@ }, { "id": 8676, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -161982,17 +118597,12 @@ }, { "id": 8677, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -162001,17 +118611,12 @@ }, { "id": 8678, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -162020,17 +118625,12 @@ }, { "id": 8679, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -162039,17 +118639,12 @@ }, { "id": 8680, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -162057,17 +118652,12 @@ }, { "id": 8681, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -162075,17 +118665,12 @@ }, { "id": 8682, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -162094,17 +118679,12 @@ }, { "id": 8683, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -162113,17 +118693,12 @@ }, { "id": 8684, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -162132,17 +118707,12 @@ }, { "id": 8685, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -162151,17 +118721,12 @@ }, { "id": 8686, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -162169,17 +118734,12 @@ }, { "id": 8687, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -162187,17 +118747,12 @@ }, { "id": 8688, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -162205,17 +118760,12 @@ }, { "id": 8689, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -162234,24 +118784,19 @@ "blast_resistance": 3600000.0, "item_id": 425, "properties": [ - 962003109, - 1627058566 + 1155426996, + 2060047744 ], "default_state_id": 8696, "states": [ { "id": 8690, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162259,17 +118804,12 @@ }, { "id": 8691, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162277,17 +118817,12 @@ }, { "id": 8692, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162295,17 +118830,12 @@ }, { "id": 8693, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162313,17 +118843,12 @@ }, { "id": 8694, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162331,17 +118856,12 @@ }, { "id": 8695, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162349,17 +118869,12 @@ }, { "id": 8696, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162367,17 +118882,12 @@ }, { "id": 8697, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162385,17 +118895,12 @@ }, { "id": 8698, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162403,17 +118908,12 @@ }, { "id": 8699, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162421,17 +118921,12 @@ }, { "id": 8700, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162439,17 +118934,12 @@ }, { "id": 8701, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162497,16 +118987,11 @@ "states": [ { "id": 8702, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -162546,45 +119031,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 8706, "states": [ { "id": 8703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 8704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162593,17 +119068,12 @@ }, { "id": 8705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162612,34 +119082,24 @@ }, { "id": 8706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 8707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162648,17 +119108,12 @@ }, { "id": 8708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162667,115 +119122,80 @@ }, { "id": 8709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 8711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 8712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 8713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 8714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 8715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -162783,17 +119203,12 @@ }, { "id": 8716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162803,17 +119218,12 @@ }, { "id": 8717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162823,17 +119233,12 @@ }, { "id": 8718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -162841,17 +119246,12 @@ }, { "id": 8719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162861,17 +119261,12 @@ }, { "id": 8720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -162881,34 +119276,24 @@ }, { "id": 8721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 8722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -162916,17 +119301,12 @@ }, { "id": 8723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -162934,34 +119314,24 @@ }, { "id": 8724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 8725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -162969,17 +119339,12 @@ }, { "id": 8726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -162987,17 +119352,12 @@ }, { "id": 8727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -163005,17 +119365,12 @@ }, { "id": 8728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163025,17 +119380,12 @@ }, { "id": 8729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163045,17 +119395,12 @@ }, { "id": 8730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -163063,17 +119408,12 @@ }, { "id": 8731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163083,17 +119423,12 @@ }, { "id": 8732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163103,34 +119438,24 @@ }, { "id": 8733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 8734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -163138,17 +119463,12 @@ }, { "id": 8735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -163156,34 +119476,24 @@ }, { "id": 8736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 8737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -163191,17 +119501,12 @@ }, { "id": 8738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -163209,17 +119514,12 @@ }, { "id": 8739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -163227,17 +119527,12 @@ }, { "id": 8740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163247,17 +119542,12 @@ }, { "id": 8741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163267,17 +119557,12 @@ }, { "id": 8742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -163285,17 +119570,12 @@ }, { "id": 8743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163305,17 +119585,12 @@ }, { "id": 8744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163325,34 +119600,24 @@ }, { "id": 8745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 8746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -163360,17 +119625,12 @@ }, { "id": 8747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -163378,34 +119638,24 @@ }, { "id": 8748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 8749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -163413,17 +119663,12 @@ }, { "id": 8750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -163431,17 +119676,12 @@ }, { "id": 8751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -163450,17 +119690,12 @@ }, { "id": 8752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163471,17 +119706,12 @@ }, { "id": 8753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163492,17 +119722,12 @@ }, { "id": 8754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -163511,17 +119736,12 @@ }, { "id": 8755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163532,17 +119752,12 @@ }, { "id": 8756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163553,34 +119768,24 @@ }, { "id": 8757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163589,17 +119794,12 @@ }, { "id": 8759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163608,34 +119808,24 @@ }, { "id": 8760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163644,17 +119834,12 @@ }, { "id": 8762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163663,17 +119848,12 @@ }, { "id": 8763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -163682,17 +119862,12 @@ }, { "id": 8764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163703,17 +119878,12 @@ }, { "id": 8765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163724,17 +119894,12 @@ }, { "id": 8766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -163743,17 +119908,12 @@ }, { "id": 8767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163764,17 +119924,12 @@ }, { "id": 8768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163785,34 +119940,24 @@ }, { "id": 8769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163821,17 +119966,12 @@ }, { "id": 8771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163840,34 +119980,24 @@ }, { "id": 8772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163876,17 +120006,12 @@ }, { "id": 8774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -163895,17 +120020,12 @@ }, { "id": 8775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -163913,17 +120033,12 @@ }, { "id": 8776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163933,17 +120048,12 @@ }, { "id": 8777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163953,17 +120063,12 @@ }, { "id": 8778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -163971,17 +120076,12 @@ }, { "id": 8779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -163991,17 +120091,12 @@ }, { "id": 8780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164011,34 +120106,24 @@ }, { "id": 8781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 8782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -164046,17 +120131,12 @@ }, { "id": 8783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -164064,34 +120144,24 @@ }, { "id": 8784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 8785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -164099,17 +120169,12 @@ }, { "id": 8786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -164117,17 +120182,12 @@ }, { "id": 8787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -164136,17 +120196,12 @@ }, { "id": 8788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164157,17 +120212,12 @@ }, { "id": 8789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164178,17 +120228,12 @@ }, { "id": 8790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -164197,17 +120242,12 @@ }, { "id": 8791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164218,17 +120258,12 @@ }, { "id": 8792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164239,34 +120274,24 @@ }, { "id": 8793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164275,17 +120300,12 @@ }, { "id": 8795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164294,34 +120314,24 @@ }, { "id": 8796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164330,17 +120340,12 @@ }, { "id": 8798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164349,17 +120354,12 @@ }, { "id": 8799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -164368,17 +120368,12 @@ }, { "id": 8800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164389,17 +120384,12 @@ }, { "id": 8801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164410,17 +120400,12 @@ }, { "id": 8802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -164429,17 +120414,12 @@ }, { "id": 8803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164450,17 +120430,12 @@ }, { "id": 8804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -164471,34 +120446,24 @@ }, { "id": 8805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164507,17 +120472,12 @@ }, { "id": 8807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164526,34 +120486,24 @@ }, { "id": 8808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 8809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164562,17 +120512,12 @@ }, { "id": 8810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -164581,17 +120526,12 @@ }, { "id": 8811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -164599,17 +120539,12 @@ }, { "id": 8812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164618,17 +120553,12 @@ }, { "id": 8813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164637,17 +120567,12 @@ }, { "id": 8814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -164655,17 +120580,12 @@ }, { "id": 8815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164674,17 +120594,12 @@ }, { "id": 8816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164693,119 +120608,84 @@ }, { "id": 8817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 8818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 8821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -164814,17 +120694,12 @@ }, { "id": 8824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164834,17 +120709,12 @@ }, { "id": 8825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164854,17 +120724,12 @@ }, { "id": 8826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -164873,17 +120738,12 @@ }, { "id": 8827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164893,17 +120753,12 @@ }, { "id": 8828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -164913,17 +120768,12 @@ }, { "id": 8829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -164931,17 +120781,12 @@ }, { "id": 8830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -164949,17 +120794,12 @@ }, { "id": 8831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -164967,17 +120807,12 @@ }, { "id": 8832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -164985,17 +120820,12 @@ }, { "id": 8833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -165003,17 +120833,12 @@ }, { "id": 8834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -165021,17 +120846,12 @@ }, { "id": 8835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -165040,17 +120860,12 @@ }, { "id": 8836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165060,17 +120875,12 @@ }, { "id": 8837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165080,17 +120890,12 @@ }, { "id": 8838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -165099,17 +120904,12 @@ }, { "id": 8839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165119,17 +120919,12 @@ }, { "id": 8840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165139,17 +120934,12 @@ }, { "id": 8841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -165157,17 +120947,12 @@ }, { "id": 8842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -165175,17 +120960,12 @@ }, { "id": 8843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -165193,17 +120973,12 @@ }, { "id": 8844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -165211,17 +120986,12 @@ }, { "id": 8845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -165229,17 +120999,12 @@ }, { "id": 8846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -165247,17 +121012,12 @@ }, { "id": 8847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165266,17 +121026,12 @@ }, { "id": 8848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165286,17 +121041,12 @@ }, { "id": 8849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165306,17 +121056,12 @@ }, { "id": 8850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165325,17 +121070,12 @@ }, { "id": 8851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165345,17 +121085,12 @@ }, { "id": 8852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165365,17 +121100,12 @@ }, { "id": 8853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -165383,17 +121113,12 @@ }, { "id": 8854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -165401,17 +121126,12 @@ }, { "id": 8855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -165419,17 +121139,12 @@ }, { "id": 8856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -165437,17 +121152,12 @@ }, { "id": 8857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -165455,17 +121165,12 @@ }, { "id": 8858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -165473,17 +121178,12 @@ }, { "id": 8859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165493,17 +121193,12 @@ }, { "id": 8860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165514,17 +121209,12 @@ }, { "id": 8861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165535,17 +121225,12 @@ }, { "id": 8862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165555,17 +121240,12 @@ }, { "id": 8863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165576,17 +121256,12 @@ }, { "id": 8864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165597,17 +121272,12 @@ }, { "id": 8865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -165615,17 +121285,12 @@ }, { "id": 8866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165634,17 +121299,12 @@ }, { "id": 8867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165653,17 +121313,12 @@ }, { "id": 8868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -165671,17 +121326,12 @@ }, { "id": 8869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165690,17 +121340,12 @@ }, { "id": 8870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165709,17 +121354,12 @@ }, { "id": 8871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165729,17 +121369,12 @@ }, { "id": 8872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165750,17 +121385,12 @@ }, { "id": 8873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165771,17 +121401,12 @@ }, { "id": 8874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165791,17 +121416,12 @@ }, { "id": 8875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165812,17 +121432,12 @@ }, { "id": 8876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165833,17 +121448,12 @@ }, { "id": 8877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -165851,17 +121461,12 @@ }, { "id": 8878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165870,17 +121475,12 @@ }, { "id": 8879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165889,17 +121489,12 @@ }, { "id": 8880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -165907,17 +121502,12 @@ }, { "id": 8881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165926,17 +121516,12 @@ }, { "id": 8882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -165945,17 +121530,12 @@ }, { "id": 8883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -165964,17 +121544,12 @@ }, { "id": 8884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -165984,17 +121559,12 @@ }, { "id": 8885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166004,17 +121574,12 @@ }, { "id": 8886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -166023,17 +121588,12 @@ }, { "id": 8887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166043,17 +121603,12 @@ }, { "id": 8888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166063,17 +121618,12 @@ }, { "id": 8889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -166081,17 +121631,12 @@ }, { "id": 8890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -166099,17 +121644,12 @@ }, { "id": 8891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -166117,17 +121657,12 @@ }, { "id": 8892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -166135,17 +121670,12 @@ }, { "id": 8893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -166153,17 +121683,12 @@ }, { "id": 8894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -166171,17 +121696,12 @@ }, { "id": 8895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -166191,17 +121711,12 @@ }, { "id": 8896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166212,17 +121727,12 @@ }, { "id": 8897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166233,17 +121743,12 @@ }, { "id": 8898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -166253,17 +121758,12 @@ }, { "id": 8899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166274,17 +121774,12 @@ }, { "id": 8900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166295,17 +121790,12 @@ }, { "id": 8901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -166313,17 +121803,12 @@ }, { "id": 8902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166332,17 +121817,12 @@ }, { "id": 8903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166351,17 +121831,12 @@ }, { "id": 8904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -166369,17 +121844,12 @@ }, { "id": 8905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166388,17 +121858,12 @@ }, { "id": 8906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166407,17 +121872,12 @@ }, { "id": 8907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -166427,17 +121887,12 @@ }, { "id": 8908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166448,17 +121903,12 @@ }, { "id": 8909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166469,17 +121919,12 @@ }, { "id": 8910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -166489,17 +121934,12 @@ }, { "id": 8911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166510,17 +121950,12 @@ }, { "id": 8912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166531,17 +121966,12 @@ }, { "id": 8913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -166549,17 +121979,12 @@ }, { "id": 8914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166568,17 +121993,12 @@ }, { "id": 8915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166587,17 +122007,12 @@ }, { "id": 8916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -166605,17 +122020,12 @@ }, { "id": 8917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166624,17 +122034,12 @@ }, { "id": 8918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -166643,17 +122048,12 @@ }, { "id": 8919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -166661,17 +122061,12 @@ }, { "id": 8920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166680,17 +122075,12 @@ }, { "id": 8921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166699,17 +122089,12 @@ }, { "id": 8922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -166717,17 +122102,12 @@ }, { "id": 8923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166736,17 +122116,12 @@ }, { "id": 8924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166755,119 +122130,84 @@ }, { "id": 8925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 8926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 8929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 8931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -166876,17 +122216,12 @@ }, { "id": 8932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166896,17 +122231,12 @@ }, { "id": 8933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166916,17 +122246,12 @@ }, { "id": 8934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -166935,17 +122260,12 @@ }, { "id": 8935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166955,17 +122275,12 @@ }, { "id": 8936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -166975,17 +122290,12 @@ }, { "id": 8937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -166993,17 +122303,12 @@ }, { "id": 8938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167011,17 +122316,12 @@ }, { "id": 8939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167029,17 +122329,12 @@ }, { "id": 8940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -167047,17 +122342,12 @@ }, { "id": 8941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167065,17 +122355,12 @@ }, { "id": 8942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167083,17 +122368,12 @@ }, { "id": 8943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -167102,17 +122382,12 @@ }, { "id": 8944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167122,17 +122397,12 @@ }, { "id": 8945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167142,17 +122412,12 @@ }, { "id": 8946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -167161,17 +122426,12 @@ }, { "id": 8947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167181,17 +122441,12 @@ }, { "id": 8948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167201,17 +122456,12 @@ }, { "id": 8949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -167219,17 +122469,12 @@ }, { "id": 8950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167237,17 +122482,12 @@ }, { "id": 8951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167255,17 +122495,12 @@ }, { "id": 8952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -167273,17 +122508,12 @@ }, { "id": 8953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167291,17 +122521,12 @@ }, { "id": 8954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -167309,17 +122534,12 @@ }, { "id": 8955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -167328,17 +122548,12 @@ }, { "id": 8956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167348,17 +122563,12 @@ }, { "id": 8957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167368,17 +122578,12 @@ }, { "id": 8958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -167387,17 +122592,12 @@ }, { "id": 8959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167407,17 +122607,12 @@ }, { "id": 8960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167427,17 +122622,12 @@ }, { "id": 8961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -167445,17 +122635,12 @@ }, { "id": 8962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -167463,17 +122648,12 @@ }, { "id": 8963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -167481,17 +122661,12 @@ }, { "id": 8964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -167499,17 +122674,12 @@ }, { "id": 8965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -167517,17 +122687,12 @@ }, { "id": 8966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -167535,17 +122700,12 @@ }, { "id": 8967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -167555,17 +122715,12 @@ }, { "id": 8968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167576,17 +122731,12 @@ }, { "id": 8969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167597,17 +122747,12 @@ }, { "id": 8970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -167617,17 +122762,12 @@ }, { "id": 8971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167638,17 +122778,12 @@ }, { "id": 8972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167659,17 +122794,12 @@ }, { "id": 8973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -167677,17 +122807,12 @@ }, { "id": 8974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167696,17 +122821,12 @@ }, { "id": 8975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167715,17 +122835,12 @@ }, { "id": 8976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -167733,17 +122848,12 @@ }, { "id": 8977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167752,17 +122862,12 @@ }, { "id": 8978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167771,17 +122876,12 @@ }, { "id": 8979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -167791,17 +122891,12 @@ }, { "id": 8980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167812,17 +122907,12 @@ }, { "id": 8981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167833,17 +122923,12 @@ }, { "id": 8982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -167853,17 +122938,12 @@ }, { "id": 8983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167874,17 +122954,12 @@ }, { "id": 8984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -167895,17 +122970,12 @@ }, { "id": 8985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -167913,17 +122983,12 @@ }, { "id": 8986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167932,17 +122997,12 @@ }, { "id": 8987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167951,17 +123011,12 @@ }, { "id": 8988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -167969,17 +123024,12 @@ }, { "id": 8989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -167988,17 +123038,12 @@ }, { "id": 8990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168007,17 +123052,12 @@ }, { "id": 8991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -168026,17 +123066,12 @@ }, { "id": 8992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168046,17 +123081,12 @@ }, { "id": 8993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168066,17 +123096,12 @@ }, { "id": 8994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -168085,17 +123110,12 @@ }, { "id": 8995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168105,17 +123125,12 @@ }, { "id": 8996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168125,17 +123140,12 @@ }, { "id": 8997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -168143,17 +123153,12 @@ }, { "id": 8998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -168161,17 +123166,12 @@ }, { "id": 8999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -168179,17 +123179,12 @@ }, { "id": 9000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -168197,17 +123192,12 @@ }, { "id": 9001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -168215,17 +123205,12 @@ }, { "id": 9002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -168233,17 +123218,12 @@ }, { "id": 9003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -168253,17 +123233,12 @@ }, { "id": 9004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168274,17 +123249,12 @@ }, { "id": 9005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168295,17 +123265,12 @@ }, { "id": 9006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -168315,17 +123280,12 @@ }, { "id": 9007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168336,17 +123296,12 @@ }, { "id": 9008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168357,17 +123312,12 @@ }, { "id": 9009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -168375,17 +123325,12 @@ }, { "id": 9010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168394,17 +123339,12 @@ }, { "id": 9011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168413,17 +123353,12 @@ }, { "id": 9012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -168431,17 +123366,12 @@ }, { "id": 9013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168450,17 +123380,12 @@ }, { "id": 9014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168469,17 +123394,12 @@ }, { "id": 9015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -168489,17 +123409,12 @@ }, { "id": 9016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168510,17 +123425,12 @@ }, { "id": 9017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168531,17 +123441,12 @@ }, { "id": 9018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -168551,17 +123456,12 @@ }, { "id": 9019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168572,17 +123472,12 @@ }, { "id": 9020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -168593,17 +123488,12 @@ }, { "id": 9021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -168611,17 +123501,12 @@ }, { "id": 9022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168630,17 +123515,12 @@ }, { "id": 9023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168649,17 +123529,12 @@ }, { "id": 9024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -168667,17 +123542,12 @@ }, { "id": 9025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168686,17 +123556,12 @@ }, { "id": 9026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -168737,45 +123602,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 9030, "states": [ { "id": 9027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 9028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -168784,17 +123639,12 @@ }, { "id": 9029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -168803,34 +123653,24 @@ }, { "id": 9030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 9031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -168839,17 +123679,12 @@ }, { "id": 9032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -168858,115 +123693,80 @@ }, { "id": 9033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 9035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 9036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 9038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 9039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -168974,17 +123774,12 @@ }, { "id": 9040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -168994,17 +123789,12 @@ }, { "id": 9041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169014,17 +123804,12 @@ }, { "id": 9042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -169032,17 +123817,12 @@ }, { "id": 9043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169052,17 +123832,12 @@ }, { "id": 9044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169072,34 +123847,24 @@ }, { "id": 9045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 9046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169107,17 +123872,12 @@ }, { "id": 9047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169125,34 +123885,24 @@ }, { "id": 9048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 9049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169160,17 +123910,12 @@ }, { "id": 9050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169178,17 +123923,12 @@ }, { "id": 9051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -169196,17 +123936,12 @@ }, { "id": 9052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169216,17 +123951,12 @@ }, { "id": 9053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169236,17 +123966,12 @@ }, { "id": 9054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -169254,17 +123979,12 @@ }, { "id": 9055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169274,17 +123994,12 @@ }, { "id": 9056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169294,34 +124009,24 @@ }, { "id": 9057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 9058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169329,17 +124034,12 @@ }, { "id": 9059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169347,34 +124047,24 @@ }, { "id": 9060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 9061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169382,17 +124072,12 @@ }, { "id": 9062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -169400,17 +124085,12 @@ }, { "id": 9063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -169418,17 +124098,12 @@ }, { "id": 9064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169438,17 +124113,12 @@ }, { "id": 9065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169458,17 +124128,12 @@ }, { "id": 9066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -169476,17 +124141,12 @@ }, { "id": 9067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169496,17 +124156,12 @@ }, { "id": 9068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169516,34 +124171,24 @@ }, { "id": 9069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 9070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -169551,17 +124196,12 @@ }, { "id": 9071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -169569,34 +124209,24 @@ }, { "id": 9072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 9073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -169604,17 +124234,12 @@ }, { "id": 9074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -169622,17 +124247,12 @@ }, { "id": 9075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -169641,17 +124261,12 @@ }, { "id": 9076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169662,17 +124277,12 @@ }, { "id": 9077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169683,17 +124293,12 @@ }, { "id": 9078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -169702,17 +124307,12 @@ }, { "id": 9079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169723,17 +124323,12 @@ }, { "id": 9080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169744,34 +124339,24 @@ }, { "id": 9081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -169780,17 +124365,12 @@ }, { "id": 9083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -169799,34 +124379,24 @@ }, { "id": 9084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -169835,17 +124405,12 @@ }, { "id": 9086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -169854,17 +124419,12 @@ }, { "id": 9087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -169873,17 +124433,12 @@ }, { "id": 9088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169894,17 +124449,12 @@ }, { "id": 9089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169915,17 +124465,12 @@ }, { "id": 9090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -169934,17 +124479,12 @@ }, { "id": 9091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169955,17 +124495,12 @@ }, { "id": 9092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -169976,34 +124511,24 @@ }, { "id": 9093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170012,17 +124537,12 @@ }, { "id": 9095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170031,34 +124551,24 @@ }, { "id": 9096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170067,17 +124577,12 @@ }, { "id": 9098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170086,17 +124591,12 @@ }, { "id": 9099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -170104,17 +124604,12 @@ }, { "id": 9100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170124,17 +124619,12 @@ }, { "id": 9101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170144,17 +124634,12 @@ }, { "id": 9102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -170162,17 +124647,12 @@ }, { "id": 9103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170182,17 +124662,12 @@ }, { "id": 9104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170202,34 +124677,24 @@ }, { "id": 9105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 9106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -170237,17 +124702,12 @@ }, { "id": 9107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -170255,34 +124715,24 @@ }, { "id": 9108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 9109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -170290,17 +124740,12 @@ }, { "id": 9110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -170308,17 +124753,12 @@ }, { "id": 9111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -170327,17 +124767,12 @@ }, { "id": 9112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170348,17 +124783,12 @@ }, { "id": 9113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170369,17 +124799,12 @@ }, { "id": 9114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -170388,17 +124813,12 @@ }, { "id": 9115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170409,17 +124829,12 @@ }, { "id": 9116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170430,34 +124845,24 @@ }, { "id": 9117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170466,17 +124871,12 @@ }, { "id": 9119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170485,34 +124885,24 @@ }, { "id": 9120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170521,17 +124911,12 @@ }, { "id": 9122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170540,17 +124925,12 @@ }, { "id": 9123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -170559,17 +124939,12 @@ }, { "id": 9124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170580,17 +124955,12 @@ }, { "id": 9125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170601,17 +124971,12 @@ }, { "id": 9126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -170620,17 +124985,12 @@ }, { "id": 9127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170641,17 +125001,12 @@ }, { "id": 9128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -170662,34 +125017,24 @@ }, { "id": 9129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170698,17 +125043,12 @@ }, { "id": 9131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170717,34 +125057,24 @@ }, { "id": 9132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 9133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170753,17 +125083,12 @@ }, { "id": 9134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -170772,17 +125097,12 @@ }, { "id": 9135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -170790,17 +125110,12 @@ }, { "id": 9136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -170809,17 +125124,12 @@ }, { "id": 9137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -170828,17 +125138,12 @@ }, { "id": 9138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -170846,17 +125151,12 @@ }, { "id": 9139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -170865,17 +125165,12 @@ }, { "id": 9140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -170884,119 +125179,84 @@ }, { "id": 9141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 9142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 9145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -171005,17 +125265,12 @@ }, { "id": 9148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171025,17 +125280,12 @@ }, { "id": 9149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171045,17 +125295,12 @@ }, { "id": 9150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -171064,17 +125309,12 @@ }, { "id": 9151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171084,17 +125324,12 @@ }, { "id": 9152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171104,17 +125339,12 @@ }, { "id": 9153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -171122,17 +125352,12 @@ }, { "id": 9154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171140,17 +125365,12 @@ }, { "id": 9155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171158,17 +125378,12 @@ }, { "id": 9156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -171176,17 +125391,12 @@ }, { "id": 9157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171194,17 +125404,12 @@ }, { "id": 9158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171212,17 +125417,12 @@ }, { "id": 9159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -171231,17 +125431,12 @@ }, { "id": 9160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171251,17 +125446,12 @@ }, { "id": 9161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171271,17 +125461,12 @@ }, { "id": 9162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -171290,17 +125475,12 @@ }, { "id": 9163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171310,17 +125490,12 @@ }, { "id": 9164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171330,17 +125505,12 @@ }, { "id": 9165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -171348,17 +125518,12 @@ }, { "id": 9166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171366,17 +125531,12 @@ }, { "id": 9167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171384,17 +125544,12 @@ }, { "id": 9168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -171402,17 +125557,12 @@ }, { "id": 9169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171420,17 +125570,12 @@ }, { "id": 9170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -171438,17 +125583,12 @@ }, { "id": 9171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -171457,17 +125597,12 @@ }, { "id": 9172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171477,17 +125612,12 @@ }, { "id": 9173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171497,17 +125627,12 @@ }, { "id": 9174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -171516,17 +125641,12 @@ }, { "id": 9175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171536,17 +125656,12 @@ }, { "id": 9176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171556,17 +125671,12 @@ }, { "id": 9177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -171574,17 +125684,12 @@ }, { "id": 9178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -171592,17 +125697,12 @@ }, { "id": 9179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -171610,17 +125710,12 @@ }, { "id": 9180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -171628,17 +125723,12 @@ }, { "id": 9181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -171646,17 +125736,12 @@ }, { "id": 9182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -171664,17 +125749,12 @@ }, { "id": 9183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -171684,17 +125764,12 @@ }, { "id": 9184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171705,17 +125780,12 @@ }, { "id": 9185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171726,17 +125796,12 @@ }, { "id": 9186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -171746,17 +125811,12 @@ }, { "id": 9187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171767,17 +125827,12 @@ }, { "id": 9188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171788,17 +125843,12 @@ }, { "id": 9189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -171806,17 +125856,12 @@ }, { "id": 9190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -171825,17 +125870,12 @@ }, { "id": 9191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -171844,17 +125884,12 @@ }, { "id": 9192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -171862,17 +125897,12 @@ }, { "id": 9193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -171881,17 +125911,12 @@ }, { "id": 9194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -171900,17 +125925,12 @@ }, { "id": 9195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -171920,17 +125940,12 @@ }, { "id": 9196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171941,17 +125956,12 @@ }, { "id": 9197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -171962,17 +125972,12 @@ }, { "id": 9198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -171982,17 +125987,12 @@ }, { "id": 9199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172003,17 +126003,12 @@ }, { "id": 9200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172024,17 +126019,12 @@ }, { "id": 9201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -172042,17 +126032,12 @@ }, { "id": 9202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172061,17 +126046,12 @@ }, { "id": 9203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172080,17 +126060,12 @@ }, { "id": 9204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -172098,17 +126073,12 @@ }, { "id": 9205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172117,17 +126087,12 @@ }, { "id": 9206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172136,17 +126101,12 @@ }, { "id": 9207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -172155,17 +126115,12 @@ }, { "id": 9208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172175,17 +126130,12 @@ }, { "id": 9209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172195,17 +126145,12 @@ }, { "id": 9210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -172214,17 +126159,12 @@ }, { "id": 9211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172234,17 +126174,12 @@ }, { "id": 9212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172254,17 +126189,12 @@ }, { "id": 9213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -172272,17 +126202,12 @@ }, { "id": 9214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -172290,17 +126215,12 @@ }, { "id": 9215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -172308,17 +126228,12 @@ }, { "id": 9216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -172326,17 +126241,12 @@ }, { "id": 9217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -172344,17 +126254,12 @@ }, { "id": 9218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -172362,17 +126267,12 @@ }, { "id": 9219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -172382,17 +126282,12 @@ }, { "id": 9220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172403,17 +126298,12 @@ }, { "id": 9221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172424,17 +126314,12 @@ }, { "id": 9222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -172444,17 +126329,12 @@ }, { "id": 9223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172465,17 +126345,12 @@ }, { "id": 9224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172486,17 +126361,12 @@ }, { "id": 9225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -172504,17 +126374,12 @@ }, { "id": 9226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172523,17 +126388,12 @@ }, { "id": 9227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172542,17 +126402,12 @@ }, { "id": 9228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -172560,17 +126415,12 @@ }, { "id": 9229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172579,17 +126429,12 @@ }, { "id": 9230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172598,17 +126443,12 @@ }, { "id": 9231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -172618,17 +126458,12 @@ }, { "id": 9232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172639,17 +126474,12 @@ }, { "id": 9233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172660,17 +126490,12 @@ }, { "id": 9234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -172680,17 +126505,12 @@ }, { "id": 9235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172701,17 +126521,12 @@ }, { "id": 9236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172722,17 +126537,12 @@ }, { "id": 9237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -172740,17 +126550,12 @@ }, { "id": 9238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172759,17 +126564,12 @@ }, { "id": 9239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172778,17 +126578,12 @@ }, { "id": 9240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -172796,17 +126591,12 @@ }, { "id": 9241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172815,17 +126605,12 @@ }, { "id": 9242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -172834,17 +126619,12 @@ }, { "id": 9243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -172852,17 +126632,12 @@ }, { "id": 9244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172871,17 +126646,12 @@ }, { "id": 9245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172890,17 +126660,12 @@ }, { "id": 9246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -172908,17 +126673,12 @@ }, { "id": 9247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172927,17 +126687,12 @@ }, { "id": 9248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -172946,119 +126701,84 @@ }, { "id": 9249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 9250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 9253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 9255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -173067,17 +126787,12 @@ }, { "id": 9256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173087,17 +126802,12 @@ }, { "id": 9257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173107,17 +126817,12 @@ }, { "id": 9258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -173126,17 +126831,12 @@ }, { "id": 9259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173146,17 +126846,12 @@ }, { "id": 9260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173166,17 +126861,12 @@ }, { "id": 9261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -173184,17 +126874,12 @@ }, { "id": 9262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173202,17 +126887,12 @@ }, { "id": 9263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173220,17 +126900,12 @@ }, { "id": 9264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -173238,17 +126913,12 @@ }, { "id": 9265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173256,17 +126926,12 @@ }, { "id": 9266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173274,17 +126939,12 @@ }, { "id": 9267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -173293,17 +126953,12 @@ }, { "id": 9268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173313,17 +126968,12 @@ }, { "id": 9269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173333,17 +126983,12 @@ }, { "id": 9270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -173352,17 +126997,12 @@ }, { "id": 9271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173372,17 +127012,12 @@ }, { "id": 9272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173392,17 +127027,12 @@ }, { "id": 9273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -173410,17 +127040,12 @@ }, { "id": 9274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173428,17 +127053,12 @@ }, { "id": 9275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173446,17 +127066,12 @@ }, { "id": 9276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -173464,17 +127079,12 @@ }, { "id": 9277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173482,17 +127092,12 @@ }, { "id": 9278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -173500,17 +127105,12 @@ }, { "id": 9279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -173519,17 +127119,12 @@ }, { "id": 9280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173539,17 +127134,12 @@ }, { "id": 9281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173559,17 +127149,12 @@ }, { "id": 9282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -173578,17 +127163,12 @@ }, { "id": 9283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173598,17 +127178,12 @@ }, { "id": 9284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173618,17 +127193,12 @@ }, { "id": 9285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -173636,17 +127206,12 @@ }, { "id": 9286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -173654,17 +127219,12 @@ }, { "id": 9287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -173672,17 +127232,12 @@ }, { "id": 9288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -173690,17 +127245,12 @@ }, { "id": 9289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -173708,17 +127258,12 @@ }, { "id": 9290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -173726,17 +127271,12 @@ }, { "id": 9291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -173746,17 +127286,12 @@ }, { "id": 9292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173767,17 +127302,12 @@ }, { "id": 9293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173788,17 +127318,12 @@ }, { "id": 9294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -173808,17 +127333,12 @@ }, { "id": 9295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173829,17 +127349,12 @@ }, { "id": 9296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -173850,17 +127365,12 @@ }, { "id": 9297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -173868,17 +127378,12 @@ }, { "id": 9298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -173887,17 +127392,12 @@ }, { "id": 9299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -173906,17 +127406,12 @@ }, { "id": 9300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -173924,17 +127419,12 @@ }, { "id": 9301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -173943,17 +127433,12 @@ }, { "id": 9302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -173962,17 +127447,12 @@ }, { "id": 9303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -173982,17 +127462,12 @@ }, { "id": 9304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174003,17 +127478,12 @@ }, { "id": 9305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174024,17 +127494,12 @@ }, { "id": 9306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174044,17 +127509,12 @@ }, { "id": 9307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174065,17 +127525,12 @@ }, { "id": 9308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174086,17 +127541,12 @@ }, { "id": 9309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -174104,17 +127554,12 @@ }, { "id": 9310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174123,17 +127568,12 @@ }, { "id": 9311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174142,17 +127582,12 @@ }, { "id": 9312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -174160,17 +127595,12 @@ }, { "id": 9313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174179,17 +127609,12 @@ }, { "id": 9314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174198,17 +127623,12 @@ }, { "id": 9315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174217,17 +127637,12 @@ }, { "id": 9316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174237,17 +127652,12 @@ }, { "id": 9317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174257,17 +127667,12 @@ }, { "id": 9318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174276,17 +127681,12 @@ }, { "id": 9319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174296,17 +127696,12 @@ }, { "id": 9320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174316,17 +127711,12 @@ }, { "id": 9321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -174334,17 +127724,12 @@ }, { "id": 9322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -174352,17 +127737,12 @@ }, { "id": 9323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -174370,17 +127750,12 @@ }, { "id": 9324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -174388,17 +127763,12 @@ }, { "id": 9325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -174406,17 +127776,12 @@ }, { "id": 9326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -174424,17 +127789,12 @@ }, { "id": 9327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174444,17 +127804,12 @@ }, { "id": 9328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174465,17 +127820,12 @@ }, { "id": 9329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174486,17 +127836,12 @@ }, { "id": 9330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174506,17 +127851,12 @@ }, { "id": 9331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174527,17 +127867,12 @@ }, { "id": 9332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174548,17 +127883,12 @@ }, { "id": 9333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -174566,17 +127896,12 @@ }, { "id": 9334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174585,17 +127910,12 @@ }, { "id": 9335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174604,17 +127924,12 @@ }, { "id": 9336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -174622,17 +127937,12 @@ }, { "id": 9337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174641,17 +127951,12 @@ }, { "id": 9338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174660,17 +127965,12 @@ }, { "id": 9339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174680,17 +127980,12 @@ }, { "id": 9340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174701,17 +127996,12 @@ }, { "id": 9341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174722,17 +128012,12 @@ }, { "id": 9342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -174742,17 +128027,12 @@ }, { "id": 9343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174763,17 +128043,12 @@ }, { "id": 9344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -174784,17 +128059,12 @@ }, { "id": 9345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -174802,17 +128072,12 @@ }, { "id": 9346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174821,17 +128086,12 @@ }, { "id": 9347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174840,17 +128100,12 @@ }, { "id": 9348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -174858,17 +128113,12 @@ }, { "id": 9349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174877,17 +128127,12 @@ }, { "id": 9350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -174932,16 +128177,11 @@ "states": [ { "id": 9351, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -174999,16 +128239,11 @@ "states": [ { "id": 9352, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175066,16 +128301,11 @@ "states": [ { "id": 9353, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175133,16 +128363,11 @@ "states": [ { "id": 9354, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175200,16 +128425,11 @@ "states": [ { "id": 9355, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175267,16 +128487,11 @@ "states": [ { "id": 9356, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175334,16 +128549,11 @@ "states": [ { "id": 9357, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175401,16 +128611,11 @@ "states": [ { "id": 9358, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175468,16 +128673,11 @@ "states": [ { "id": 9359, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175535,16 +128735,11 @@ "states": [ { "id": 9360, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175602,16 +128797,11 @@ "states": [ { "id": 9361, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175669,16 +128859,11 @@ "states": [ { "id": 9362, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175736,16 +128921,11 @@ "states": [ { "id": 9363, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175803,16 +128983,11 @@ "states": [ { "id": 9364, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175870,16 +129045,11 @@ "states": [ { "id": 9365, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -175937,16 +129107,11 @@ "states": [ { "id": 9366, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176004,16 +129169,11 @@ "states": [ { "id": 9367, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176071,16 +129231,11 @@ "states": [ { "id": 9368, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176138,16 +129293,11 @@ "states": [ { "id": 9369, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176205,16 +129355,11 @@ "states": [ { "id": 9370, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176272,16 +129417,11 @@ "states": [ { "id": 9371, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176339,16 +129479,11 @@ "states": [ { "id": 9372, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176406,16 +129541,11 @@ "states": [ { "id": 9373, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176473,16 +129603,11 @@ "states": [ { "id": 9374, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176540,16 +129665,11 @@ "states": [ { "id": 9375, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176607,16 +129727,11 @@ "states": [ { "id": 9376, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176674,16 +129789,11 @@ "states": [ { "id": 9377, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176741,16 +129851,11 @@ "states": [ { "id": 9378, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176808,16 +129913,11 @@ "states": [ { "id": 9379, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -176886,120 +129986,80 @@ ] }, "properties": [ - -503090506 + -1147938675 ], "default_state_id": 9380, "states": [ { "id": 9380, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9381, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9382, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9383, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9384, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9385, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9386, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9387, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -177091,120 +130151,80 @@ ] }, "properties": [ - -503090506 + -1147938675 ], "default_state_id": 9388, "states": [ { "id": 9388, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9389, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9390, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9391, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9392, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9393, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9394, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9395, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -177241,346 +130261,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9405, "states": [ { "id": 9396, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9397, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9398, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9399, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9400, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9401, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9406, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9407, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9408, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9409, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9410, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9411, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9412, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9413, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9414, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9415, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9416, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9417, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9418, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9419, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -177617,346 +130517,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9429, "states": [ { "id": 9420, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9421, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9422, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9423, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9424, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9425, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9426, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9427, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9428, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9429, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9430, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9431, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9432, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9433, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9434, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9435, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9436, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9437, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9438, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9439, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9440, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9441, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9442, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9443, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -177993,346 +130773,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9453, "states": [ { "id": 9444, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9445, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9446, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9447, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9448, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9449, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9450, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9451, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9452, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9453, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9454, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9455, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9456, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9457, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9458, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9459, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9460, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9461, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9462, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9463, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9464, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9465, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9466, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9467, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -178369,346 +131029,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9477, "states": [ { "id": 9468, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9469, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9470, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9471, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9472, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9473, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9474, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9475, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9476, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9477, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9478, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9479, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9480, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9481, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9482, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9483, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9484, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9485, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9486, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9487, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9488, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9489, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9490, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9491, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -178745,346 +131285,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9501, "states": [ { "id": 9492, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9493, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9494, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9495, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9496, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9497, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9498, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9499, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9500, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9501, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9502, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9503, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9504, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9505, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9506, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9507, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9508, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9509, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9510, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9511, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9512, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9513, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9514, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9515, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -179121,346 +131541,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9525, "states": [ { "id": 9516, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9517, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9518, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9519, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9520, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9521, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9522, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9523, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9524, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9525, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9526, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9527, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9528, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9529, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9530, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9531, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9532, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9533, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9534, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9535, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9536, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9537, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9538, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9539, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -179497,346 +131797,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9549, "states": [ { "id": 9540, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9541, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9542, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9543, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9544, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9545, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9546, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9547, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9548, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9549, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9550, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9551, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9552, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9553, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9554, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9555, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9556, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9557, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9558, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9559, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9560, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9561, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9562, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9563, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -179873,346 +132053,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9573, "states": [ { "id": 9564, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9565, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9566, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9567, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9568, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9569, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9570, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9571, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9572, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9573, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9574, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9575, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9576, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9577, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9578, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9579, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9580, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9581, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9582, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9583, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9584, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9585, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9586, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9587, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -180249,346 +132309,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9597, "states": [ { "id": 9588, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9589, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9590, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9591, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9592, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9593, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9594, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9595, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9596, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9597, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9598, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9599, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9600, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9601, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9602, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9603, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9604, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9605, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9606, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9607, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9608, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9609, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9610, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9611, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -180625,346 +132565,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 9621, "states": [ { "id": 9612, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9613, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9614, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9615, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9616, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9617, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9618, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9619, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9620, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9621, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9622, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9623, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9624, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9625, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9626, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9627, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9628, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9629, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9630, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9631, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9632, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9633, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9634, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9635, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -180996,24 +132816,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9652, "states": [ { "id": 9636, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181021,17 +132836,12 @@ }, { "id": 9637, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181039,17 +132849,12 @@ }, { "id": 9638, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181057,17 +132862,12 @@ }, { "id": 9639, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181075,17 +132875,12 @@ }, { "id": 9640, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181093,17 +132888,12 @@ }, { "id": 9641, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181111,17 +132901,12 @@ }, { "id": 9642, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181129,17 +132914,12 @@ }, { "id": 9643, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181147,17 +132927,12 @@ }, { "id": 9644, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181165,17 +132940,12 @@ }, { "id": 9645, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181183,17 +132953,12 @@ }, { "id": 9646, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181201,17 +132966,12 @@ }, { "id": 9647, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181219,17 +132979,12 @@ }, { "id": 9648, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181237,17 +132992,12 @@ }, { "id": 9649, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181255,17 +133005,12 @@ }, { "id": 9650, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181273,17 +133018,12 @@ }, { "id": 9651, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181291,17 +133031,12 @@ }, { "id": 9652, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181309,17 +133044,12 @@ }, { "id": 9653, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181327,17 +133057,12 @@ }, { "id": 9654, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181345,17 +133070,12 @@ }, { "id": 9655, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181363,17 +133083,12 @@ }, { "id": 9656, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181381,17 +133096,12 @@ }, { "id": 9657, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181399,17 +133109,12 @@ }, { "id": 9658, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181417,17 +133122,12 @@ }, { "id": 9659, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181435,17 +133135,12 @@ }, { "id": 9660, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181453,17 +133148,12 @@ }, { "id": 9661, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181471,17 +133161,12 @@ }, { "id": 9662, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181489,17 +133174,12 @@ }, { "id": 9663, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181507,17 +133187,12 @@ }, { "id": 9664, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181525,17 +133200,12 @@ }, { "id": 9665, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181543,17 +133213,12 @@ }, { "id": 9666, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181561,17 +133226,12 @@ }, { "id": 9667, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181606,24 +133266,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9669, "states": [ { "id": 9668, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -181631,17 +133286,12 @@ }, { "id": 9669, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -181649,17 +133299,12 @@ }, { "id": 9670, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -181667,17 +133312,12 @@ }, { "id": 9671, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -181685,17 +133325,12 @@ }, { "id": 9672, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -181703,17 +133338,12 @@ }, { "id": 9673, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -181721,17 +133351,12 @@ }, { "id": 9674, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -181739,17 +133364,12 @@ }, { "id": 9675, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -181784,24 +133404,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9692, "states": [ { "id": 9676, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181809,17 +133424,12 @@ }, { "id": 9677, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181827,17 +133437,12 @@ }, { "id": 9678, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181845,17 +133450,12 @@ }, { "id": 9679, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181863,17 +133463,12 @@ }, { "id": 9680, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181881,17 +133476,12 @@ }, { "id": 9681, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181899,17 +133489,12 @@ }, { "id": 9682, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181917,17 +133502,12 @@ }, { "id": 9683, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181935,17 +133515,12 @@ }, { "id": 9684, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181953,17 +133528,12 @@ }, { "id": 9685, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181971,17 +133541,12 @@ }, { "id": 9686, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -181989,17 +133554,12 @@ }, { "id": 9687, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182007,17 +133567,12 @@ }, { "id": 9688, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182025,17 +133580,12 @@ }, { "id": 9689, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182043,17 +133593,12 @@ }, { "id": 9690, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182061,17 +133606,12 @@ }, { "id": 9691, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182079,17 +133619,12 @@ }, { "id": 9692, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182097,17 +133632,12 @@ }, { "id": 9693, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182115,17 +133645,12 @@ }, { "id": 9694, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182133,17 +133658,12 @@ }, { "id": 9695, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182151,17 +133671,12 @@ }, { "id": 9696, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182169,17 +133684,12 @@ }, { "id": 9697, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182187,17 +133697,12 @@ }, { "id": 9698, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182205,17 +133710,12 @@ }, { "id": 9699, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182223,17 +133723,12 @@ }, { "id": 9700, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182241,17 +133736,12 @@ }, { "id": 9701, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182259,17 +133749,12 @@ }, { "id": 9702, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182277,17 +133762,12 @@ }, { "id": 9703, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182295,17 +133775,12 @@ }, { "id": 9704, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182313,17 +133788,12 @@ }, { "id": 9705, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182331,17 +133801,12 @@ }, { "id": 9706, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182349,17 +133814,12 @@ }, { "id": 9707, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "WITHER_SKELETON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182394,24 +133854,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9709, "states": [ { "id": 9708, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -182419,17 +133874,12 @@ }, { "id": 9709, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -182437,17 +133887,12 @@ }, { "id": 9710, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -182455,17 +133900,12 @@ }, { "id": 9711, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -182473,17 +133913,12 @@ }, { "id": 9712, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -182491,17 +133926,12 @@ }, { "id": 9713, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -182509,17 +133939,12 @@ }, { "id": 9714, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -182527,17 +133952,12 @@ }, { "id": 9715, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -182572,24 +133992,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9732, "states": [ { "id": 9716, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182597,17 +134012,12 @@ }, { "id": 9717, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182615,17 +134025,12 @@ }, { "id": 9718, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182633,17 +134038,12 @@ }, { "id": 9719, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182651,17 +134051,12 @@ }, { "id": 9720, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182669,17 +134064,12 @@ }, { "id": 9721, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182687,17 +134077,12 @@ }, { "id": 9722, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182705,17 +134090,12 @@ }, { "id": 9723, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182723,17 +134103,12 @@ }, { "id": 9724, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182741,17 +134116,12 @@ }, { "id": 9725, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182759,17 +134129,12 @@ }, { "id": 9726, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182777,17 +134142,12 @@ }, { "id": 9727, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182795,17 +134155,12 @@ }, { "id": 9728, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182813,17 +134168,12 @@ }, { "id": 9729, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182831,17 +134181,12 @@ }, { "id": 9730, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182849,17 +134194,12 @@ }, { "id": 9731, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182867,17 +134207,12 @@ }, { "id": 9732, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182885,17 +134220,12 @@ }, { "id": 9733, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182903,17 +134233,12 @@ }, { "id": 9734, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182921,17 +134246,12 @@ }, { "id": 9735, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182939,17 +134259,12 @@ }, { "id": 9736, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182957,17 +134272,12 @@ }, { "id": 9737, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182975,17 +134285,12 @@ }, { "id": 9738, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -182993,17 +134298,12 @@ }, { "id": 9739, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183011,17 +134311,12 @@ }, { "id": 9740, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183029,17 +134324,12 @@ }, { "id": 9741, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183047,17 +134337,12 @@ }, { "id": 9742, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183065,17 +134350,12 @@ }, { "id": 9743, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183083,17 +134363,12 @@ }, { "id": 9744, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183101,17 +134376,12 @@ }, { "id": 9745, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183119,17 +134389,12 @@ }, { "id": 9746, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183137,17 +134402,12 @@ }, { "id": 9747, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "ZOMBIE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183182,24 +134442,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9749, "states": [ { "id": 9748, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -183207,17 +134462,12 @@ }, { "id": 9749, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -183225,17 +134475,12 @@ }, { "id": 9750, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -183243,17 +134488,12 @@ }, { "id": 9751, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -183261,17 +134501,12 @@ }, { "id": 9752, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -183279,17 +134514,12 @@ }, { "id": 9753, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -183297,17 +134527,12 @@ }, { "id": 9754, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -183315,17 +134540,12 @@ }, { "id": 9755, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -183371,24 +134591,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9772, "states": [ { "id": 9756, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183396,17 +134611,12 @@ }, { "id": 9757, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183414,17 +134624,12 @@ }, { "id": 9758, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183432,17 +134637,12 @@ }, { "id": 9759, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183450,17 +134650,12 @@ }, { "id": 9760, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183468,17 +134663,12 @@ }, { "id": 9761, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183486,17 +134676,12 @@ }, { "id": 9762, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183504,17 +134689,12 @@ }, { "id": 9763, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183522,17 +134702,12 @@ }, { "id": 9764, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183540,17 +134715,12 @@ }, { "id": 9765, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183558,17 +134728,12 @@ }, { "id": 9766, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183576,17 +134741,12 @@ }, { "id": 9767, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183594,17 +134754,12 @@ }, { "id": 9768, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183612,17 +134767,12 @@ }, { "id": 9769, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183630,17 +134780,12 @@ }, { "id": 9770, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183648,17 +134793,12 @@ }, { "id": 9771, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183666,17 +134806,12 @@ }, { "id": 9772, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183684,17 +134819,12 @@ }, { "id": 9773, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183702,17 +134832,12 @@ }, { "id": 9774, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183720,17 +134845,12 @@ }, { "id": 9775, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183738,17 +134858,12 @@ }, { "id": 9776, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183756,17 +134871,12 @@ }, { "id": 9777, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183774,17 +134884,12 @@ }, { "id": 9778, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183792,17 +134897,12 @@ }, { "id": 9779, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183810,17 +134910,12 @@ }, { "id": 9780, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183828,17 +134923,12 @@ }, { "id": 9781, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183846,17 +134936,12 @@ }, { "id": 9782, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183864,17 +134949,12 @@ }, { "id": 9783, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183882,17 +134962,12 @@ }, { "id": 9784, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183900,17 +134975,12 @@ }, { "id": 9785, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183918,17 +134988,12 @@ }, { "id": 9786, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183936,17 +135001,12 @@ }, { "id": 9787, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CUSTOM_HEAD", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -183992,24 +135052,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9789, "states": [ { "id": 9788, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -184017,17 +135072,12 @@ }, { "id": 9789, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -184035,17 +135085,12 @@ }, { "id": 9790, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -184053,17 +135098,12 @@ }, { "id": 9791, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -184071,17 +135111,12 @@ }, { "id": 9792, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -184089,17 +135124,12 @@ }, { "id": 9793, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -184107,17 +135137,12 @@ }, { "id": 9794, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -184125,17 +135150,12 @@ }, { "id": 9795, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -184170,24 +135190,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9812, "states": [ { "id": 9796, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184195,17 +135210,12 @@ }, { "id": 9797, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184213,17 +135223,12 @@ }, { "id": 9798, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184231,17 +135236,12 @@ }, { "id": 9799, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184249,17 +135249,12 @@ }, { "id": 9800, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184267,17 +135262,12 @@ }, { "id": 9801, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184285,17 +135275,12 @@ }, { "id": 9802, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184303,17 +135288,12 @@ }, { "id": 9803, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184321,17 +135301,12 @@ }, { "id": 9804, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184339,17 +135314,12 @@ }, { "id": 9805, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184357,17 +135327,12 @@ }, { "id": 9806, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184375,17 +135340,12 @@ }, { "id": 9807, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184393,17 +135353,12 @@ }, { "id": 9808, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184411,17 +135366,12 @@ }, { "id": 9809, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184429,17 +135379,12 @@ }, { "id": 9810, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184447,17 +135392,12 @@ }, { "id": 9811, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184465,17 +135405,12 @@ }, { "id": 9812, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184483,17 +135418,12 @@ }, { "id": 9813, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184501,17 +135431,12 @@ }, { "id": 9814, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184519,17 +135444,12 @@ }, { "id": 9815, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184537,17 +135457,12 @@ }, { "id": 9816, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184555,17 +135470,12 @@ }, { "id": 9817, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184573,17 +135483,12 @@ }, { "id": 9818, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184591,17 +135496,12 @@ }, { "id": 9819, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184609,17 +135509,12 @@ }, { "id": 9820, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184627,17 +135522,12 @@ }, { "id": 9821, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184645,17 +135535,12 @@ }, { "id": 9822, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184663,17 +135548,12 @@ }, { "id": 9823, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184681,17 +135561,12 @@ }, { "id": 9824, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184699,17 +135574,12 @@ }, { "id": 9825, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184717,17 +135587,12 @@ }, { "id": 9826, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184735,17 +135600,12 @@ }, { "id": 9827, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "CREEPER", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184780,24 +135640,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9829, "states": [ { "id": 9828, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -184805,17 +135660,12 @@ }, { "id": 9829, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -184823,17 +135673,12 @@ }, { "id": 9830, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -184841,17 +135686,12 @@ }, { "id": 9831, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -184859,17 +135699,12 @@ }, { "id": 9832, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -184877,17 +135712,12 @@ }, { "id": 9833, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -184895,17 +135725,12 @@ }, { "id": 9834, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -184913,17 +135738,12 @@ }, { "id": 9835, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -184958,24 +135778,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9852, "states": [ { "id": 9836, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -184983,17 +135798,12 @@ }, { "id": 9837, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185001,17 +135811,12 @@ }, { "id": 9838, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185019,17 +135824,12 @@ }, { "id": 9839, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185037,17 +135837,12 @@ }, { "id": 9840, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185055,17 +135850,12 @@ }, { "id": 9841, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185073,17 +135863,12 @@ }, { "id": 9842, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185091,17 +135876,12 @@ }, { "id": 9843, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185109,17 +135889,12 @@ }, { "id": 9844, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185127,17 +135902,12 @@ }, { "id": 9845, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185145,17 +135915,12 @@ }, { "id": 9846, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185163,17 +135928,12 @@ }, { "id": 9847, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185181,17 +135941,12 @@ }, { "id": 9848, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185199,17 +135954,12 @@ }, { "id": 9849, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185217,17 +135967,12 @@ }, { "id": 9850, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185235,17 +135980,12 @@ }, { "id": 9851, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185253,17 +135993,12 @@ }, { "id": 9852, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185271,17 +136006,12 @@ }, { "id": 9853, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185289,17 +136019,12 @@ }, { "id": 9854, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185307,17 +136032,12 @@ }, { "id": 9855, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185325,17 +136045,12 @@ }, { "id": 9856, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185343,17 +136058,12 @@ }, { "id": 9857, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185361,17 +136071,12 @@ }, { "id": 9858, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185379,17 +136084,12 @@ }, { "id": 9859, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185397,17 +136097,12 @@ }, { "id": 9860, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185415,17 +136110,12 @@ }, { "id": 9861, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185433,17 +136123,12 @@ }, { "id": 9862, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185451,17 +136136,12 @@ }, { "id": 9863, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185469,17 +136149,12 @@ }, { "id": 9864, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185487,17 +136162,12 @@ }, { "id": 9865, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185505,17 +136175,12 @@ }, { "id": 9866, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185523,17 +136188,12 @@ }, { "id": 9867, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "DRAGON", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ], @@ -185568,24 +136228,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9869, "states": [ { "id": 9868, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -185593,17 +136248,12 @@ }, { "id": 9869, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 159 ], @@ -185611,17 +136261,12 @@ }, { "id": 9870, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -185629,17 +136274,12 @@ }, { "id": 9871, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 160 ], @@ -185647,17 +136287,12 @@ }, { "id": 9872, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -185665,17 +136300,12 @@ }, { "id": 9873, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 161 ], @@ -185683,17 +136313,12 @@ }, { "id": 9874, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -185701,17 +136326,12 @@ }, { "id": 9875, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 162 ], @@ -185746,24 +136366,19 @@ ] }, "properties": [ - -634074493, - 1078043 + -440650606, + -643770126 ], "default_state_id": 9892, "states": [ { "id": 9876, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185771,17 +136386,12 @@ }, { "id": 9877, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185789,17 +136399,12 @@ }, { "id": 9878, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185807,17 +136412,12 @@ }, { "id": 9879, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185825,17 +136425,12 @@ }, { "id": 9880, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185843,17 +136438,12 @@ }, { "id": 9881, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185861,17 +136451,12 @@ }, { "id": 9882, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185879,17 +136464,12 @@ }, { "id": 9883, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185897,17 +136477,12 @@ }, { "id": 9884, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185915,17 +136490,12 @@ }, { "id": 9885, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185933,17 +136503,12 @@ }, { "id": 9886, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185951,17 +136516,12 @@ }, { "id": 9887, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185969,17 +136529,12 @@ }, { "id": 9888, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -185987,17 +136542,12 @@ }, { "id": 9889, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186005,17 +136555,12 @@ }, { "id": 9890, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186023,17 +136568,12 @@ }, { "id": 9891, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186041,17 +136581,12 @@ }, { "id": 9892, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186059,17 +136594,12 @@ }, { "id": 9893, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186077,17 +136607,12 @@ }, { "id": 9894, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186095,17 +136620,12 @@ }, { "id": 9895, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186113,17 +136633,12 @@ }, { "id": 9896, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186131,17 +136646,12 @@ }, { "id": 9897, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186149,17 +136659,12 @@ }, { "id": 9898, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186167,17 +136672,12 @@ }, { "id": 9899, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186185,17 +136685,12 @@ }, { "id": 9900, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186203,17 +136698,12 @@ }, { "id": 9901, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186221,17 +136711,12 @@ }, { "id": 9902, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186239,17 +136724,12 @@ }, { "id": 9903, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186257,17 +136737,12 @@ }, { "id": 9904, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186275,17 +136750,12 @@ }, { "id": 9905, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186293,17 +136763,12 @@ }, { "id": 9906, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186311,17 +136776,12 @@ }, { "id": 9907, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "PIGLIN", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 163 ], @@ -186356,24 +136816,19 @@ ] }, "properties": [ - -1870206692, - -634074493 + 1877134791, + -440650606 ], "default_state_id": 9909, "states": [ { "id": 9908, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 164 ], @@ -186381,17 +136836,12 @@ }, { "id": 9909, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 164 ], @@ -186399,17 +136849,12 @@ }, { "id": 9910, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 165 ], @@ -186417,17 +136862,12 @@ }, { "id": 9911, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 165 ], @@ -186435,17 +136875,12 @@ }, { "id": 9912, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 166 ], @@ -186453,17 +136888,12 @@ }, { "id": 9913, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 166 ], @@ -186471,17 +136901,12 @@ }, { "id": 9914, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 167 ], @@ -186489,17 +136914,12 @@ }, { "id": 9915, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 167 ], @@ -186539,23 +136959,18 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 9916, "states": [ { "id": 9916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 169, @@ -186568,17 +136983,12 @@ }, { "id": 9917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 169, @@ -186591,17 +137001,12 @@ }, { "id": 9918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 175, @@ -186614,17 +137019,12 @@ }, { "id": 9919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 175, @@ -186669,23 +137069,18 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 9920, "states": [ { "id": 9920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 169, @@ -186698,17 +137093,12 @@ }, { "id": 9921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 169, @@ -186721,17 +137111,12 @@ }, { "id": 9922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 175, @@ -186744,17 +137129,12 @@ }, { "id": 9923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 175, @@ -186799,23 +137179,18 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 9924, "states": [ { "id": 9924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 169, @@ -186828,17 +137203,12 @@ }, { "id": 9925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 169, @@ -186851,17 +137221,12 @@ }, { "id": 9926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 175, @@ -186874,17 +137239,12 @@ }, { "id": 9927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 168, 175, @@ -186938,25 +137298,20 @@ ] }, "properties": [ - -1870206692, - -547018622, - 795783032 + 1877134791, + 1490079803, + 989206919 ], "default_state_id": 9929, "states": [ { "id": 9928, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -186964,17 +137319,12 @@ }, { "id": 9929, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -186982,17 +137332,12 @@ }, { "id": 9930, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -187000,17 +137345,12 @@ }, { "id": 9931, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -187018,17 +137358,12 @@ }, { "id": 9932, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -187036,17 +137371,12 @@ }, { "id": 9933, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -187054,17 +137384,12 @@ }, { "id": 9934, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -187072,17 +137397,12 @@ }, { "id": 9935, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -187090,17 +137410,12 @@ }, { "id": 9936, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -187108,17 +137423,12 @@ }, { "id": 9937, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 60 ], @@ -187126,17 +137436,12 @@ }, { "id": 9938, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -187144,17 +137449,12 @@ }, { "id": 9939, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 59 ], @@ -187162,17 +137462,12 @@ }, { "id": 9940, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -187180,17 +137475,12 @@ }, { "id": 9941, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -187198,17 +137488,12 @@ }, { "id": 9942, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -187216,17 +137501,12 @@ }, { "id": 9943, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -187234,17 +137514,12 @@ }, { "id": 9944, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -187252,17 +137527,12 @@ }, { "id": 9945, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -187270,17 +137540,12 @@ }, { "id": 9946, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -187288,17 +137553,12 @@ }, { "id": 9947, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 58 ], @@ -187306,17 +137566,12 @@ }, { "id": 9948, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -187324,17 +137579,12 @@ }, { "id": 9949, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 62 ], @@ -187342,17 +137592,12 @@ }, { "id": 9950, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -187360,17 +137605,12 @@ }, { "id": 9951, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 61 ], @@ -187410,232 +137650,152 @@ ] }, "properties": [ - 268053108 + -376795061 ], "default_state_id": 9952, "states": [ { "id": 9952, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9953, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9954, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9955, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9956, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9957, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9958, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9959, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9960, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9961, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9962, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9963, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9964, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9965, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9966, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9967, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -187672,232 +137832,152 @@ ] }, "properties": [ - 268053108 + -376795061 ], "default_state_id": 9968, "states": [ { "id": 9968, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9969, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9970, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9971, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9972, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9973, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9974, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9975, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9976, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9977, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9978, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9979, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9980, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9981, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9982, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 9983, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -187934,25 +138014,20 @@ ] }, "properties": [ - -1870206692, - 1860068453, - -634074493 + 1877134791, + -1349425465, + -440650606 ], "default_state_id": 9985, "states": [ { "id": 9984, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -187960,17 +138035,12 @@ }, { "id": 9985, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -187978,17 +138048,12 @@ }, { "id": 9986, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -187996,17 +138061,12 @@ }, { "id": 9987, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188014,17 +138074,12 @@ }, { "id": 9988, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188032,17 +138087,12 @@ }, { "id": 9989, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188050,17 +138100,12 @@ }, { "id": 9990, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188068,17 +138113,12 @@ }, { "id": 9991, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188086,17 +138126,12 @@ }, { "id": 9992, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188104,17 +138139,12 @@ }, { "id": 9993, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188122,17 +138152,12 @@ }, { "id": 9994, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188140,17 +138165,12 @@ }, { "id": 9995, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188158,17 +138178,12 @@ }, { "id": 9996, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188176,17 +138191,12 @@ }, { "id": 9997, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188194,17 +138204,12 @@ }, { "id": 9998, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188212,17 +138217,12 @@ }, { "id": 9999, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70 ], @@ -188262,24 +138262,19 @@ ] }, "properties": [ - 381546772, - 268053108 + 574970659, + -376795061 ], "default_state_id": 10016, "states": [ { "id": 10000, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188287,17 +138282,12 @@ }, { "id": 10001, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188305,17 +138295,12 @@ }, { "id": 10002, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188323,17 +138308,12 @@ }, { "id": 10003, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188341,17 +138321,12 @@ }, { "id": 10004, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188359,17 +138334,12 @@ }, { "id": 10005, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188377,17 +138347,12 @@ }, { "id": 10006, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188395,17 +138360,12 @@ }, { "id": 10007, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188413,17 +138373,12 @@ }, { "id": 10008, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188431,17 +138386,12 @@ }, { "id": 10009, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188449,17 +138399,12 @@ }, { "id": 10010, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188467,17 +138412,12 @@ }, { "id": 10011, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188485,17 +138425,12 @@ }, { "id": 10012, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188503,17 +138438,12 @@ }, { "id": 10013, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188521,17 +138451,12 @@ }, { "id": 10014, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188539,17 +138464,12 @@ }, { "id": 10015, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188557,17 +138477,12 @@ }, { "id": 10016, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188575,17 +138490,12 @@ }, { "id": 10017, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188593,17 +138503,12 @@ }, { "id": 10018, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188611,17 +138516,12 @@ }, { "id": 10019, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188629,17 +138529,12 @@ }, { "id": 10020, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188647,17 +138542,12 @@ }, { "id": 10021, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188665,17 +138555,12 @@ }, { "id": 10022, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188683,17 +138568,12 @@ }, { "id": 10023, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188701,17 +138581,12 @@ }, { "id": 10024, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188719,17 +138594,12 @@ }, { "id": 10025, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188737,17 +138607,12 @@ }, { "id": 10026, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188755,17 +138620,12 @@ }, { "id": 10027, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188773,17 +138633,12 @@ }, { "id": 10028, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188791,17 +138646,12 @@ }, { "id": 10029, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188809,17 +138659,12 @@ }, { "id": 10030, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188827,17 +138672,12 @@ }, { "id": 10031, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 71 ], @@ -188881,17 +138721,12 @@ "states": [ { "id": 10032, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -188973,17 +138808,12 @@ "states": [ { "id": 10033, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -189031,23 +138861,18 @@ ] }, "properties": [ - -1855722144, - -27495672 + -1662298257, + 1345658728 ], "default_state_id": 10034, "states": [ { "id": 10034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 181, 182, @@ -189067,16 +138892,11 @@ }, { "id": 10035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 194, 195, @@ -189093,16 +138913,11 @@ }, { "id": 10036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 194, 196, @@ -189119,16 +138934,11 @@ }, { "id": 10037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 197, 198, @@ -189147,16 +138957,11 @@ }, { "id": 10038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 194, 201, @@ -189173,16 +138978,11 @@ }, { "id": 10039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 181, 182, @@ -189202,16 +139002,11 @@ }, { "id": 10040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 194, 195, @@ -189228,16 +139023,11 @@ }, { "id": 10041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 194, 196, @@ -189254,16 +139044,11 @@ }, { "id": 10042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 197, 198, @@ -189282,16 +139067,11 @@ }, { "id": 10043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 194, 201, @@ -189344,17 +139124,12 @@ "states": [ { "id": 10044, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -189397,17 +139172,12 @@ "states": [ { "id": 10045, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -189446,57 +139216,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 10047, "states": [ { "id": 10046, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 10047, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 10048, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -189535,26 +139290,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 10060, "states": [ { "id": 10049, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -189562,17 +139312,12 @@ }, { "id": 10050, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -189580,17 +139325,12 @@ }, { "id": 10051, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -189599,17 +139339,12 @@ }, { "id": 10052, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -189618,17 +139353,12 @@ }, { "id": 10053, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -189637,17 +139367,12 @@ }, { "id": 10054, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -189656,17 +139381,12 @@ }, { "id": 10055, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -189675,17 +139395,12 @@ }, { "id": 10056, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -189694,17 +139409,12 @@ }, { "id": 10057, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -189713,17 +139423,12 @@ }, { "id": 10058, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -189732,17 +139437,12 @@ }, { "id": 10059, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -189750,17 +139450,12 @@ }, { "id": 10060, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -189768,17 +139463,12 @@ }, { "id": 10061, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -189787,17 +139477,12 @@ }, { "id": 10062, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -189806,17 +139491,12 @@ }, { "id": 10063, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -189825,17 +139505,12 @@ }, { "id": 10064, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -189844,17 +139519,12 @@ }, { "id": 10065, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -189862,17 +139532,12 @@ }, { "id": 10066, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -189880,17 +139545,12 @@ }, { "id": 10067, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -189898,17 +139558,12 @@ }, { "id": 10068, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -189916,17 +139571,12 @@ }, { "id": 10069, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -189934,17 +139584,12 @@ }, { "id": 10070, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -189952,17 +139597,12 @@ }, { "id": 10071, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -189971,17 +139611,12 @@ }, { "id": 10072, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -189990,17 +139625,12 @@ }, { "id": 10073, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -190009,17 +139639,12 @@ }, { "id": 10074, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -190028,17 +139653,12 @@ }, { "id": 10075, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -190047,17 +139667,12 @@ }, { "id": 10076, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -190066,17 +139681,12 @@ }, { "id": 10077, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -190085,17 +139695,12 @@ }, { "id": 10078, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -190104,17 +139709,12 @@ }, { "id": 10079, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -190122,17 +139722,12 @@ }, { "id": 10080, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -190140,17 +139735,12 @@ }, { "id": 10081, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -190159,17 +139749,12 @@ }, { "id": 10082, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -190178,17 +139763,12 @@ }, { "id": 10083, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -190197,17 +139777,12 @@ }, { "id": 10084, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -190216,17 +139791,12 @@ }, { "id": 10085, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -190234,17 +139804,12 @@ }, { "id": 10086, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -190252,17 +139817,12 @@ }, { "id": 10087, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -190270,17 +139830,12 @@ }, { "id": 10088, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -190288,17 +139843,12 @@ }, { "id": 10089, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -190306,17 +139856,12 @@ }, { "id": 10090, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -190324,17 +139869,12 @@ }, { "id": 10091, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -190343,17 +139883,12 @@ }, { "id": 10092, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -190362,17 +139897,12 @@ }, { "id": 10093, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -190381,17 +139911,12 @@ }, { "id": 10094, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -190400,17 +139925,12 @@ }, { "id": 10095, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -190419,17 +139939,12 @@ }, { "id": 10096, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -190438,17 +139953,12 @@ }, { "id": 10097, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -190457,17 +139967,12 @@ }, { "id": 10098, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -190476,17 +139981,12 @@ }, { "id": 10099, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -190494,17 +139994,12 @@ }, { "id": 10100, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -190512,17 +140007,12 @@ }, { "id": 10101, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -190531,17 +140021,12 @@ }, { "id": 10102, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -190550,17 +140035,12 @@ }, { "id": 10103, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -190569,17 +140049,12 @@ }, { "id": 10104, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -190588,17 +140063,12 @@ }, { "id": 10105, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -190606,17 +140076,12 @@ }, { "id": 10106, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -190624,17 +140089,12 @@ }, { "id": 10107, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -190642,17 +140102,12 @@ }, { "id": 10108, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -190660,17 +140115,12 @@ }, { "id": 10109, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -190678,17 +140128,12 @@ }, { "id": 10110, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -190696,17 +140141,12 @@ }, { "id": 10111, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -190715,17 +140155,12 @@ }, { "id": 10112, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -190734,17 +140169,12 @@ }, { "id": 10113, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -190753,17 +140183,12 @@ }, { "id": 10114, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -190772,17 +140197,12 @@ }, { "id": 10115, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -190791,17 +140211,12 @@ }, { "id": 10116, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -190810,17 +140225,12 @@ }, { "id": 10117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -190829,17 +140239,12 @@ }, { "id": 10118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -190848,17 +140253,12 @@ }, { "id": 10119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -190866,17 +140266,12 @@ }, { "id": 10120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -190884,17 +140279,12 @@ }, { "id": 10121, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -190903,17 +140293,12 @@ }, { "id": 10122, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -190922,17 +140307,12 @@ }, { "id": 10123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -190941,17 +140321,12 @@ }, { "id": 10124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -190960,17 +140335,12 @@ }, { "id": 10125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -190978,17 +140348,12 @@ }, { "id": 10126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -190996,17 +140361,12 @@ }, { "id": 10127, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -191014,17 +140374,12 @@ }, { "id": 10128, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -191064,346 +140419,226 @@ ] }, "properties": [ - -634074493, - 382516644, - 795783032 + -440650606, + -1920199656, + 989206919 ], "default_state_id": 10142, "states": [ { "id": 10129, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10130, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10131, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10132, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10133, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10134, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10135, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10136, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10137, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10138, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10139, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10140, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10141, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10142, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10143, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10144, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10145, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10146, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10147, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10148, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10149, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10150, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10151, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 10152, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.7, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -191449,24 +140684,19 @@ ] }, "properties": [ - 1627058566, - -894880138 + 2060047744, + -701456251 ], "default_state_id": 10154, "states": [ { "id": 10153, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191474,17 +140704,12 @@ }, { "id": 10154, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191492,17 +140717,12 @@ }, { "id": 10155, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191510,17 +140730,12 @@ }, { "id": 10156, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191528,17 +140743,12 @@ }, { "id": 10157, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191546,17 +140756,12 @@ }, { "id": 10158, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191564,17 +140769,12 @@ }, { "id": 10159, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191582,17 +140782,12 @@ }, { "id": 10160, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191600,17 +140795,12 @@ }, { "id": 10161, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191618,17 +140808,12 @@ }, { "id": 10162, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191636,17 +140821,12 @@ }, { "id": 10163, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191654,17 +140834,12 @@ }, { "id": 10164, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -191708,17 +140883,12 @@ "states": [ { "id": 10165, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -191761,17 +140931,12 @@ "states": [ { "id": 10166, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -191814,17 +140979,12 @@ "states": [ { "id": 10167, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -191867,17 +141027,12 @@ "states": [ { "id": 10168, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -191920,17 +141075,12 @@ "states": [ { "id": 10169, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -191973,17 +141123,12 @@ "states": [ { "id": 10170, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192026,17 +141171,12 @@ "states": [ { "id": 10171, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192079,17 +141219,12 @@ "states": [ { "id": 10172, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192132,17 +141267,12 @@ "states": [ { "id": 10173, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192185,17 +141315,12 @@ "states": [ { "id": 10174, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192238,17 +141363,12 @@ "states": [ { "id": 10175, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192291,17 +141411,12 @@ "states": [ { "id": 10176, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192344,17 +141459,12 @@ "states": [ { "id": 10177, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192397,17 +141507,12 @@ "states": [ { "id": 10178, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192450,17 +141555,12 @@ "states": [ { "id": 10179, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192503,17 +141603,12 @@ "states": [ { "id": 10180, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -192564,26 +141659,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10212, "states": [ { "id": 10181, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -192592,16 +141682,11 @@ }, { "id": 10182, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -192609,16 +141694,11 @@ }, { "id": 10183, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -192627,16 +141707,11 @@ }, { "id": 10184, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -192644,16 +141719,11 @@ }, { "id": 10185, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -192661,16 +141731,11 @@ }, { "id": 10186, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -192678,16 +141743,11 @@ }, { "id": 10187, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -192695,16 +141755,11 @@ }, { "id": 10188, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -192712,16 +141767,11 @@ }, { "id": 10189, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -192729,16 +141779,11 @@ }, { "id": 10190, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -192746,16 +141791,11 @@ }, { "id": 10191, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -192763,16 +141803,11 @@ }, { "id": 10192, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -192780,80 +141815,55 @@ }, { "id": 10193, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10194, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10195, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10196, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10197, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -192862,32 +141872,22 @@ }, { "id": 10198, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10199, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -192896,32 +141896,22 @@ }, { "id": 10200, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10201, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -192929,32 +141919,22 @@ }, { "id": 10202, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10203, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -192962,32 +141942,22 @@ }, { "id": 10204, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10205, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -192995,32 +141965,22 @@ }, { "id": 10206, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10207, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -193028,80 +141988,55 @@ }, { "id": 10208, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10209, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10210, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10211, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10212, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -193152,26 +142087,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10244, "states": [ { "id": 10213, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -193180,16 +142110,11 @@ }, { "id": 10214, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -193197,16 +142122,11 @@ }, { "id": 10215, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -193215,16 +142135,11 @@ }, { "id": 10216, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -193232,16 +142147,11 @@ }, { "id": 10217, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -193249,16 +142159,11 @@ }, { "id": 10218, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -193266,16 +142171,11 @@ }, { "id": 10219, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -193283,16 +142183,11 @@ }, { "id": 10220, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -193300,16 +142195,11 @@ }, { "id": 10221, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -193317,16 +142207,11 @@ }, { "id": 10222, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -193334,16 +142219,11 @@ }, { "id": 10223, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -193351,16 +142231,11 @@ }, { "id": 10224, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -193368,80 +142243,55 @@ }, { "id": 10225, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10226, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10227, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10228, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10229, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -193450,32 +142300,22 @@ }, { "id": 10230, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10231, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -193484,32 +142324,22 @@ }, { "id": 10232, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10233, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -193517,32 +142347,22 @@ }, { "id": 10234, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10235, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -193550,32 +142370,22 @@ }, { "id": 10236, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10237, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -193583,32 +142393,22 @@ }, { "id": 10238, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10239, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -193616,80 +142416,55 @@ }, { "id": 10240, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10241, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10242, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10243, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10244, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -193740,26 +142515,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10276, "states": [ { "id": 10245, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -193768,16 +142538,11 @@ }, { "id": 10246, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -193785,16 +142550,11 @@ }, { "id": 10247, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -193803,16 +142563,11 @@ }, { "id": 10248, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -193820,16 +142575,11 @@ }, { "id": 10249, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -193837,16 +142587,11 @@ }, { "id": 10250, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -193854,16 +142599,11 @@ }, { "id": 10251, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -193871,16 +142611,11 @@ }, { "id": 10252, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -193888,16 +142623,11 @@ }, { "id": 10253, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -193905,16 +142635,11 @@ }, { "id": 10254, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -193922,16 +142647,11 @@ }, { "id": 10255, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -193939,16 +142659,11 @@ }, { "id": 10256, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -193956,80 +142671,55 @@ }, { "id": 10257, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10258, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10259, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10260, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10261, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -194038,32 +142728,22 @@ }, { "id": 10262, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10263, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -194072,32 +142752,22 @@ }, { "id": 10264, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10265, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -194105,32 +142775,22 @@ }, { "id": 10266, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10267, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -194138,32 +142798,22 @@ }, { "id": 10268, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10269, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -194171,32 +142821,22 @@ }, { "id": 10270, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10271, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -194204,80 +142844,55 @@ }, { "id": 10272, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10273, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10274, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10275, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10276, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -194328,26 +142943,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10308, "states": [ { "id": 10277, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -194356,16 +142966,11 @@ }, { "id": 10278, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -194373,16 +142978,11 @@ }, { "id": 10279, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -194391,16 +142991,11 @@ }, { "id": 10280, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -194408,16 +143003,11 @@ }, { "id": 10281, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -194425,16 +143015,11 @@ }, { "id": 10282, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -194442,16 +143027,11 @@ }, { "id": 10283, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -194459,16 +143039,11 @@ }, { "id": 10284, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -194476,16 +143051,11 @@ }, { "id": 10285, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -194493,16 +143063,11 @@ }, { "id": 10286, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -194510,16 +143075,11 @@ }, { "id": 10287, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -194527,16 +143087,11 @@ }, { "id": 10288, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -194544,80 +143099,55 @@ }, { "id": 10289, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10290, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10291, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10292, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10293, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -194626,32 +143156,22 @@ }, { "id": 10294, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10295, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -194660,32 +143180,22 @@ }, { "id": 10296, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10297, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -194693,32 +143203,22 @@ }, { "id": 10298, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10299, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -194726,32 +143226,22 @@ }, { "id": 10300, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10301, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -194759,32 +143249,22 @@ }, { "id": 10302, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10303, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -194792,80 +143272,55 @@ }, { "id": 10304, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10305, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10306, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10307, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10308, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -194916,26 +143371,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10340, "states": [ { "id": 10309, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -194944,16 +143394,11 @@ }, { "id": 10310, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -194961,16 +143406,11 @@ }, { "id": 10311, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -194979,16 +143419,11 @@ }, { "id": 10312, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -194996,16 +143431,11 @@ }, { "id": 10313, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -195013,16 +143443,11 @@ }, { "id": 10314, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -195030,16 +143455,11 @@ }, { "id": 10315, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -195047,16 +143467,11 @@ }, { "id": 10316, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -195064,16 +143479,11 @@ }, { "id": 10317, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -195081,16 +143491,11 @@ }, { "id": 10318, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -195098,16 +143503,11 @@ }, { "id": 10319, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -195115,16 +143515,11 @@ }, { "id": 10320, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -195132,80 +143527,55 @@ }, { "id": 10321, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10322, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10323, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10324, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10325, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -195214,32 +143584,22 @@ }, { "id": 10326, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10327, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -195248,32 +143608,22 @@ }, { "id": 10328, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10329, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -195281,32 +143631,22 @@ }, { "id": 10330, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10331, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -195314,32 +143654,22 @@ }, { "id": 10332, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10333, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -195347,32 +143677,22 @@ }, { "id": 10334, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10335, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -195380,80 +143700,55 @@ }, { "id": 10336, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10337, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10338, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10339, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10340, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -195504,26 +143799,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10372, "states": [ { "id": 10341, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -195532,16 +143822,11 @@ }, { "id": 10342, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -195549,16 +143834,11 @@ }, { "id": 10343, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -195567,16 +143847,11 @@ }, { "id": 10344, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -195584,16 +143859,11 @@ }, { "id": 10345, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -195601,16 +143871,11 @@ }, { "id": 10346, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -195618,16 +143883,11 @@ }, { "id": 10347, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -195635,16 +143895,11 @@ }, { "id": 10348, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -195652,16 +143907,11 @@ }, { "id": 10349, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -195669,16 +143919,11 @@ }, { "id": 10350, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -195686,16 +143931,11 @@ }, { "id": 10351, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -195703,16 +143943,11 @@ }, { "id": 10352, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -195720,80 +143955,55 @@ }, { "id": 10353, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10354, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10355, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10356, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10357, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -195802,32 +144012,22 @@ }, { "id": 10358, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10359, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -195836,32 +144036,22 @@ }, { "id": 10360, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10361, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -195869,32 +144059,22 @@ }, { "id": 10362, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10363, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -195902,32 +144082,22 @@ }, { "id": 10364, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10365, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -195935,32 +144105,22 @@ }, { "id": 10366, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10367, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -195968,80 +144128,55 @@ }, { "id": 10368, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10369, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10370, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10371, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10372, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -196092,26 +144227,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10404, "states": [ { "id": 10373, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -196120,16 +144250,11 @@ }, { "id": 10374, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -196137,16 +144262,11 @@ }, { "id": 10375, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -196155,16 +144275,11 @@ }, { "id": 10376, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -196172,16 +144287,11 @@ }, { "id": 10377, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -196189,16 +144299,11 @@ }, { "id": 10378, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -196206,16 +144311,11 @@ }, { "id": 10379, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -196223,16 +144323,11 @@ }, { "id": 10380, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -196240,16 +144335,11 @@ }, { "id": 10381, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -196257,16 +144347,11 @@ }, { "id": 10382, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -196274,16 +144359,11 @@ }, { "id": 10383, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -196291,16 +144371,11 @@ }, { "id": 10384, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -196308,80 +144383,55 @@ }, { "id": 10385, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10386, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10387, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10388, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10389, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -196390,32 +144440,22 @@ }, { "id": 10390, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10391, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -196424,32 +144464,22 @@ }, { "id": 10392, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10393, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -196457,32 +144487,22 @@ }, { "id": 10394, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10395, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -196490,32 +144510,22 @@ }, { "id": 10396, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10397, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -196523,32 +144533,22 @@ }, { "id": 10398, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10399, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -196556,80 +144556,55 @@ }, { "id": 10400, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10401, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10402, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10403, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10404, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -196680,26 +144655,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10436, "states": [ { "id": 10405, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -196708,16 +144678,11 @@ }, { "id": 10406, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -196725,16 +144690,11 @@ }, { "id": 10407, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -196743,16 +144703,11 @@ }, { "id": 10408, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -196760,16 +144715,11 @@ }, { "id": 10409, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -196777,16 +144727,11 @@ }, { "id": 10410, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -196794,16 +144739,11 @@ }, { "id": 10411, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -196811,16 +144751,11 @@ }, { "id": 10412, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -196828,16 +144763,11 @@ }, { "id": 10413, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -196845,16 +144775,11 @@ }, { "id": 10414, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -196862,16 +144787,11 @@ }, { "id": 10415, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -196879,16 +144799,11 @@ }, { "id": 10416, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -196896,80 +144811,55 @@ }, { "id": 10417, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10418, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10419, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10420, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10421, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -196978,32 +144868,22 @@ }, { "id": 10422, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10423, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -197012,32 +144892,22 @@ }, { "id": 10424, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10425, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -197045,32 +144915,22 @@ }, { "id": 10426, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10427, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -197078,32 +144938,22 @@ }, { "id": 10428, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10429, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -197111,32 +144961,22 @@ }, { "id": 10430, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10431, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -197144,80 +144984,55 @@ }, { "id": 10432, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10433, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10434, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10435, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10436, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -197268,26 +145083,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10468, "states": [ { "id": 10437, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -197296,16 +145106,11 @@ }, { "id": 10438, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -197313,16 +145118,11 @@ }, { "id": 10439, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -197331,16 +145131,11 @@ }, { "id": 10440, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -197348,16 +145143,11 @@ }, { "id": 10441, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -197365,16 +145155,11 @@ }, { "id": 10442, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -197382,16 +145167,11 @@ }, { "id": 10443, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -197399,16 +145179,11 @@ }, { "id": 10444, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -197416,16 +145191,11 @@ }, { "id": 10445, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -197433,16 +145203,11 @@ }, { "id": 10446, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -197450,16 +145215,11 @@ }, { "id": 10447, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -197467,16 +145227,11 @@ }, { "id": 10448, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -197484,80 +145239,55 @@ }, { "id": 10449, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10450, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10451, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10452, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10453, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -197566,32 +145296,22 @@ }, { "id": 10454, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10455, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -197600,32 +145320,22 @@ }, { "id": 10456, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10457, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -197633,32 +145343,22 @@ }, { "id": 10458, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10459, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -197666,32 +145366,22 @@ }, { "id": 10460, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10461, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -197699,32 +145389,22 @@ }, { "id": 10462, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10463, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -197732,80 +145412,55 @@ }, { "id": 10464, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10465, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10466, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10467, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10468, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -197856,26 +145511,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10500, "states": [ { "id": 10469, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -197884,16 +145534,11 @@ }, { "id": 10470, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -197901,16 +145546,11 @@ }, { "id": 10471, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -197919,16 +145559,11 @@ }, { "id": 10472, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -197936,16 +145571,11 @@ }, { "id": 10473, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -197953,16 +145583,11 @@ }, { "id": 10474, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -197970,16 +145595,11 @@ }, { "id": 10475, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -197987,16 +145607,11 @@ }, { "id": 10476, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -198004,16 +145619,11 @@ }, { "id": 10477, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -198021,16 +145631,11 @@ }, { "id": 10478, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -198038,16 +145643,11 @@ }, { "id": 10479, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -198055,16 +145655,11 @@ }, { "id": 10480, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -198072,80 +145667,55 @@ }, { "id": 10481, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10482, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10483, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10484, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10485, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -198154,32 +145724,22 @@ }, { "id": 10486, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10487, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -198188,32 +145748,22 @@ }, { "id": 10488, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10489, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -198221,32 +145771,22 @@ }, { "id": 10490, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10491, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -198254,32 +145794,22 @@ }, { "id": 10492, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10493, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -198287,32 +145817,22 @@ }, { "id": 10494, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10495, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -198320,80 +145840,55 @@ }, { "id": 10496, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10497, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10498, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10499, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10500, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -198444,26 +145939,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10532, "states": [ { "id": 10501, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -198472,16 +145962,11 @@ }, { "id": 10502, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -198489,16 +145974,11 @@ }, { "id": 10503, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -198507,16 +145987,11 @@ }, { "id": 10504, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -198524,16 +145999,11 @@ }, { "id": 10505, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -198541,16 +146011,11 @@ }, { "id": 10506, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -198558,16 +146023,11 @@ }, { "id": 10507, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -198575,16 +146035,11 @@ }, { "id": 10508, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -198592,16 +146047,11 @@ }, { "id": 10509, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -198609,16 +146059,11 @@ }, { "id": 10510, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -198626,16 +146071,11 @@ }, { "id": 10511, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -198643,16 +146083,11 @@ }, { "id": 10512, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -198660,80 +146095,55 @@ }, { "id": 10513, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10514, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10515, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10516, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10517, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -198742,32 +146152,22 @@ }, { "id": 10518, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10519, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -198776,32 +146176,22 @@ }, { "id": 10520, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10521, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -198809,32 +146199,22 @@ }, { "id": 10522, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10523, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -198842,32 +146222,22 @@ }, { "id": 10524, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10525, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -198875,32 +146245,22 @@ }, { "id": 10526, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10527, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -198908,80 +146268,55 @@ }, { "id": 10528, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10529, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10530, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10531, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10532, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -199032,26 +146367,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10564, "states": [ { "id": 10533, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -199060,16 +146390,11 @@ }, { "id": 10534, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -199077,16 +146402,11 @@ }, { "id": 10535, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -199095,16 +146415,11 @@ }, { "id": 10536, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -199112,16 +146427,11 @@ }, { "id": 10537, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -199129,16 +146439,11 @@ }, { "id": 10538, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -199146,16 +146451,11 @@ }, { "id": 10539, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -199163,16 +146463,11 @@ }, { "id": 10540, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -199180,16 +146475,11 @@ }, { "id": 10541, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -199197,16 +146487,11 @@ }, { "id": 10542, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -199214,16 +146499,11 @@ }, { "id": 10543, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -199231,16 +146511,11 @@ }, { "id": 10544, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -199248,80 +146523,55 @@ }, { "id": 10545, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10546, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10547, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10548, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10549, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -199330,32 +146580,22 @@ }, { "id": 10550, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10551, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -199364,32 +146604,22 @@ }, { "id": 10552, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10553, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -199397,32 +146627,22 @@ }, { "id": 10554, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10555, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -199430,32 +146650,22 @@ }, { "id": 10556, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10557, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -199463,32 +146673,22 @@ }, { "id": 10558, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10559, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -199496,80 +146696,55 @@ }, { "id": 10560, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10561, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10562, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10563, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10564, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -199620,26 +146795,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10596, "states": [ { "id": 10565, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -199648,16 +146818,11 @@ }, { "id": 10566, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -199665,16 +146830,11 @@ }, { "id": 10567, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -199683,16 +146843,11 @@ }, { "id": 10568, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -199700,16 +146855,11 @@ }, { "id": 10569, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -199717,16 +146867,11 @@ }, { "id": 10570, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -199734,16 +146879,11 @@ }, { "id": 10571, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -199751,16 +146891,11 @@ }, { "id": 10572, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -199768,16 +146903,11 @@ }, { "id": 10573, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -199785,16 +146915,11 @@ }, { "id": 10574, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -199802,16 +146927,11 @@ }, { "id": 10575, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -199819,16 +146939,11 @@ }, { "id": 10576, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -199836,80 +146951,55 @@ }, { "id": 10577, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10578, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10579, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10580, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10581, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -199918,32 +147008,22 @@ }, { "id": 10582, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10583, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -199952,32 +147032,22 @@ }, { "id": 10584, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10585, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -199985,32 +147055,22 @@ }, { "id": 10586, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10587, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -200018,32 +147078,22 @@ }, { "id": 10588, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10589, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -200051,32 +147101,22 @@ }, { "id": 10590, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10591, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -200084,80 +147124,55 @@ }, { "id": 10592, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10593, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10594, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10595, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10596, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -200208,26 +147223,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10628, "states": [ { "id": 10597, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -200236,16 +147246,11 @@ }, { "id": 10598, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -200253,16 +147258,11 @@ }, { "id": 10599, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -200271,16 +147271,11 @@ }, { "id": 10600, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -200288,16 +147283,11 @@ }, { "id": 10601, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -200305,16 +147295,11 @@ }, { "id": 10602, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -200322,16 +147307,11 @@ }, { "id": 10603, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -200339,16 +147319,11 @@ }, { "id": 10604, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -200356,16 +147331,11 @@ }, { "id": 10605, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -200373,16 +147343,11 @@ }, { "id": 10606, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -200390,16 +147355,11 @@ }, { "id": 10607, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -200407,16 +147367,11 @@ }, { "id": 10608, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -200424,80 +147379,55 @@ }, { "id": 10609, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10610, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10611, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10612, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10613, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -200506,32 +147436,22 @@ }, { "id": 10614, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10615, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -200540,32 +147460,22 @@ }, { "id": 10616, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10617, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -200573,32 +147483,22 @@ }, { "id": 10618, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10619, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -200606,32 +147506,22 @@ }, { "id": 10620, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10621, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -200639,32 +147529,22 @@ }, { "id": 10622, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10623, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -200672,80 +147552,55 @@ }, { "id": 10624, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10625, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10626, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10627, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10628, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -200796,26 +147651,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10660, "states": [ { "id": 10629, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -200824,16 +147674,11 @@ }, { "id": 10630, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -200841,16 +147686,11 @@ }, { "id": 10631, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -200859,16 +147699,11 @@ }, { "id": 10632, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -200876,16 +147711,11 @@ }, { "id": 10633, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -200893,16 +147723,11 @@ }, { "id": 10634, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -200910,16 +147735,11 @@ }, { "id": 10635, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -200927,16 +147747,11 @@ }, { "id": 10636, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -200944,16 +147759,11 @@ }, { "id": 10637, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -200961,16 +147771,11 @@ }, { "id": 10638, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -200978,16 +147783,11 @@ }, { "id": 10639, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -200995,16 +147795,11 @@ }, { "id": 10640, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -201012,80 +147807,55 @@ }, { "id": 10641, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10642, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10643, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10644, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10645, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -201094,32 +147864,22 @@ }, { "id": 10646, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10647, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -201128,32 +147888,22 @@ }, { "id": 10648, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10649, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -201161,32 +147911,22 @@ }, { "id": 10650, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10651, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -201194,32 +147934,22 @@ }, { "id": 10652, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10653, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -201227,32 +147957,22 @@ }, { "id": 10654, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10655, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -201260,80 +147980,55 @@ }, { "id": 10656, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10657, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10658, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10659, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10660, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -201384,26 +148079,21 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 10692, "states": [ { "id": 10661, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -201412,16 +148102,11 @@ }, { "id": 10662, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -201429,16 +148114,11 @@ }, { "id": 10663, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95, @@ -201447,16 +148127,11 @@ }, { "id": 10664, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97, 98 @@ -201464,16 +148139,11 @@ }, { "id": 10665, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -201481,16 +148151,11 @@ }, { "id": 10666, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -201498,16 +148163,11 @@ }, { "id": 10667, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 95 @@ -201515,16 +148175,11 @@ }, { "id": 10668, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99, 98 @@ -201532,16 +148187,11 @@ }, { "id": 10669, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -201549,16 +148199,11 @@ }, { "id": 10670, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -201566,16 +148211,11 @@ }, { "id": 10671, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94, 96 @@ -201583,16 +148223,11 @@ }, { "id": 10672, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100, 98 @@ -201600,80 +148235,55 @@ }, { "id": 10673, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10674, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10675, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 94 ] }, { "id": 10676, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 101 ] }, { "id": 10677, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -201682,32 +148292,22 @@ }, { "id": 10678, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10679, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95, @@ -201716,32 +148316,22 @@ }, { "id": 10680, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 97 ] }, { "id": 10681, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -201749,32 +148339,22 @@ }, { "id": 10682, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10683, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 95 @@ -201782,32 +148362,22 @@ }, { "id": 10684, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 99 ] }, { "id": 10685, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -201815,32 +148385,22 @@ }, { "id": 10686, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10687, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102, 96 @@ -201848,80 +148408,55 @@ }, { "id": 10688, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 100 ] }, { "id": 10689, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10690, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] }, { "id": 10691, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 102 ] }, { "id": 10692, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 103 ] @@ -201960,26 +148495,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 10704, "states": [ { "id": 10693, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -201987,17 +148517,12 @@ }, { "id": 10694, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -202005,17 +148530,12 @@ }, { "id": 10695, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -202024,17 +148544,12 @@ }, { "id": 10696, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -202043,17 +148558,12 @@ }, { "id": 10697, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -202062,17 +148572,12 @@ }, { "id": 10698, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -202081,17 +148586,12 @@ }, { "id": 10699, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -202100,17 +148600,12 @@ }, { "id": 10700, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -202119,17 +148614,12 @@ }, { "id": 10701, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -202138,17 +148628,12 @@ }, { "id": 10702, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -202157,17 +148642,12 @@ }, { "id": 10703, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -202175,17 +148655,12 @@ }, { "id": 10704, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -202193,17 +148668,12 @@ }, { "id": 10705, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202212,17 +148682,12 @@ }, { "id": 10706, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202231,17 +148696,12 @@ }, { "id": 10707, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -202250,17 +148710,12 @@ }, { "id": 10708, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -202269,17 +148724,12 @@ }, { "id": 10709, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -202287,17 +148737,12 @@ }, { "id": 10710, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -202305,17 +148750,12 @@ }, { "id": 10711, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -202323,17 +148763,12 @@ }, { "id": 10712, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -202341,17 +148776,12 @@ }, { "id": 10713, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -202359,17 +148789,12 @@ }, { "id": 10714, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -202377,17 +148802,12 @@ }, { "id": 10715, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -202396,17 +148816,12 @@ }, { "id": 10716, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -202415,17 +148830,12 @@ }, { "id": 10717, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -202434,17 +148844,12 @@ }, { "id": 10718, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -202453,17 +148858,12 @@ }, { "id": 10719, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -202472,17 +148872,12 @@ }, { "id": 10720, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -202491,17 +148886,12 @@ }, { "id": 10721, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -202510,17 +148900,12 @@ }, { "id": 10722, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -202529,17 +148914,12 @@ }, { "id": 10723, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -202547,17 +148927,12 @@ }, { "id": 10724, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -202565,17 +148940,12 @@ }, { "id": 10725, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -202584,17 +148954,12 @@ }, { "id": 10726, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -202603,17 +148968,12 @@ }, { "id": 10727, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202622,17 +148982,12 @@ }, { "id": 10728, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202641,17 +148996,12 @@ }, { "id": 10729, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -202659,17 +149009,12 @@ }, { "id": 10730, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -202677,17 +149022,12 @@ }, { "id": 10731, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -202695,17 +149035,12 @@ }, { "id": 10732, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -202713,17 +149048,12 @@ }, { "id": 10733, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -202731,17 +149061,12 @@ }, { "id": 10734, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -202749,17 +149074,12 @@ }, { "id": 10735, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -202768,17 +149088,12 @@ }, { "id": 10736, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -202787,17 +149102,12 @@ }, { "id": 10737, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -202806,17 +149116,12 @@ }, { "id": 10738, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -202825,17 +149130,12 @@ }, { "id": 10739, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -202844,17 +149144,12 @@ }, { "id": 10740, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -202863,17 +149158,12 @@ }, { "id": 10741, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -202882,17 +149172,12 @@ }, { "id": 10742, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -202901,17 +149186,12 @@ }, { "id": 10743, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -202919,17 +149199,12 @@ }, { "id": 10744, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -202937,17 +149212,12 @@ }, { "id": 10745, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202956,17 +149226,12 @@ }, { "id": 10746, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202975,17 +149240,12 @@ }, { "id": 10747, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -202994,17 +149254,12 @@ }, { "id": 10748, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -203013,17 +149268,12 @@ }, { "id": 10749, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -203031,17 +149281,12 @@ }, { "id": 10750, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -203049,17 +149294,12 @@ }, { "id": 10751, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -203067,17 +149307,12 @@ }, { "id": 10752, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -203085,17 +149320,12 @@ }, { "id": 10753, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -203103,17 +149333,12 @@ }, { "id": 10754, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -203121,17 +149346,12 @@ }, { "id": 10755, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -203140,17 +149360,12 @@ }, { "id": 10756, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -203159,17 +149374,12 @@ }, { "id": 10757, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -203178,17 +149388,12 @@ }, { "id": 10758, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -203197,17 +149402,12 @@ }, { "id": 10759, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -203216,17 +149416,12 @@ }, { "id": 10760, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -203235,17 +149430,12 @@ }, { "id": 10761, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -203254,17 +149444,12 @@ }, { "id": 10762, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -203273,17 +149458,12 @@ }, { "id": 10763, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -203291,17 +149471,12 @@ }, { "id": 10764, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -203309,17 +149484,12 @@ }, { "id": 10765, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -203328,17 +149498,12 @@ }, { "id": 10766, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -203347,17 +149512,12 @@ }, { "id": 10767, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -203366,17 +149526,12 @@ }, { "id": 10768, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -203385,17 +149540,12 @@ }, { "id": 10769, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -203403,17 +149553,12 @@ }, { "id": 10770, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -203421,17 +149566,12 @@ }, { "id": 10771, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -203439,17 +149579,12 @@ }, { "id": 10772, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -203489,26 +149624,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 10784, "states": [ { "id": 10773, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -203516,17 +149646,12 @@ }, { "id": 10774, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -203534,17 +149659,12 @@ }, { "id": 10775, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -203553,17 +149673,12 @@ }, { "id": 10776, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -203572,17 +149687,12 @@ }, { "id": 10777, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -203591,17 +149701,12 @@ }, { "id": 10778, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -203610,17 +149715,12 @@ }, { "id": 10779, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -203629,17 +149729,12 @@ }, { "id": 10780, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -203648,17 +149743,12 @@ }, { "id": 10781, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -203667,17 +149757,12 @@ }, { "id": 10782, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -203686,17 +149771,12 @@ }, { "id": 10783, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -203704,17 +149784,12 @@ }, { "id": 10784, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -203722,17 +149797,12 @@ }, { "id": 10785, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -203741,17 +149811,12 @@ }, { "id": 10786, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -203760,17 +149825,12 @@ }, { "id": 10787, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -203779,17 +149839,12 @@ }, { "id": 10788, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -203798,17 +149853,12 @@ }, { "id": 10789, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -203816,17 +149866,12 @@ }, { "id": 10790, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -203834,17 +149879,12 @@ }, { "id": 10791, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -203852,17 +149892,12 @@ }, { "id": 10792, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -203870,17 +149905,12 @@ }, { "id": 10793, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -203888,17 +149918,12 @@ }, { "id": 10794, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -203906,17 +149931,12 @@ }, { "id": 10795, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -203925,17 +149945,12 @@ }, { "id": 10796, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -203944,17 +149959,12 @@ }, { "id": 10797, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -203963,17 +149973,12 @@ }, { "id": 10798, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -203982,17 +149987,12 @@ }, { "id": 10799, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -204001,17 +150001,12 @@ }, { "id": 10800, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -204020,17 +150015,12 @@ }, { "id": 10801, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -204039,17 +150029,12 @@ }, { "id": 10802, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -204058,17 +150043,12 @@ }, { "id": 10803, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -204076,17 +150056,12 @@ }, { "id": 10804, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -204094,17 +150069,12 @@ }, { "id": 10805, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -204113,17 +150083,12 @@ }, { "id": 10806, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -204132,17 +150097,12 @@ }, { "id": 10807, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -204151,17 +150111,12 @@ }, { "id": 10808, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -204170,17 +150125,12 @@ }, { "id": 10809, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -204188,17 +150138,12 @@ }, { "id": 10810, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -204206,17 +150151,12 @@ }, { "id": 10811, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -204224,17 +150164,12 @@ }, { "id": 10812, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -204242,17 +150177,12 @@ }, { "id": 10813, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -204260,17 +150190,12 @@ }, { "id": 10814, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -204278,17 +150203,12 @@ }, { "id": 10815, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -204297,17 +150217,12 @@ }, { "id": 10816, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -204316,17 +150231,12 @@ }, { "id": 10817, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -204335,17 +150245,12 @@ }, { "id": 10818, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -204354,17 +150259,12 @@ }, { "id": 10819, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -204373,17 +150273,12 @@ }, { "id": 10820, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -204392,17 +150287,12 @@ }, { "id": 10821, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -204411,17 +150301,12 @@ }, { "id": 10822, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -204430,17 +150315,12 @@ }, { "id": 10823, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -204448,17 +150328,12 @@ }, { "id": 10824, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -204466,17 +150341,12 @@ }, { "id": 10825, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -204485,17 +150355,12 @@ }, { "id": 10826, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -204504,17 +150369,12 @@ }, { "id": 10827, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -204523,17 +150383,12 @@ }, { "id": 10828, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -204542,17 +150397,12 @@ }, { "id": 10829, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -204560,17 +150410,12 @@ }, { "id": 10830, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -204578,17 +150423,12 @@ }, { "id": 10831, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -204596,17 +150436,12 @@ }, { "id": 10832, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -204614,17 +150449,12 @@ }, { "id": 10833, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -204632,17 +150462,12 @@ }, { "id": 10834, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -204650,17 +150475,12 @@ }, { "id": 10835, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -204669,17 +150489,12 @@ }, { "id": 10836, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -204688,17 +150503,12 @@ }, { "id": 10837, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -204707,17 +150517,12 @@ }, { "id": 10838, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -204726,17 +150531,12 @@ }, { "id": 10839, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -204745,17 +150545,12 @@ }, { "id": 10840, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -204764,17 +150559,12 @@ }, { "id": 10841, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -204783,17 +150573,12 @@ }, { "id": 10842, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -204802,17 +150587,12 @@ }, { "id": 10843, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -204820,17 +150600,12 @@ }, { "id": 10844, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -204838,17 +150613,12 @@ }, { "id": 10845, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -204857,17 +150627,12 @@ }, { "id": 10846, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -204876,17 +150641,12 @@ }, { "id": 10847, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -204895,17 +150655,12 @@ }, { "id": 10848, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -204914,17 +150669,12 @@ }, { "id": 10849, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -204932,17 +150682,12 @@ }, { "id": 10850, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -204950,17 +150695,12 @@ }, { "id": 10851, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -204968,17 +150708,12 @@ }, { "id": 10852, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -205018,26 +150753,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 10864, "states": [ { "id": 10853, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -205045,17 +150775,12 @@ }, { "id": 10854, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -205063,17 +150788,12 @@ }, { "id": 10855, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -205082,17 +150802,12 @@ }, { "id": 10856, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -205101,17 +150816,12 @@ }, { "id": 10857, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -205120,17 +150830,12 @@ }, { "id": 10858, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -205139,17 +150844,12 @@ }, { "id": 10859, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -205158,17 +150858,12 @@ }, { "id": 10860, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -205177,17 +150872,12 @@ }, { "id": 10861, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -205196,17 +150886,12 @@ }, { "id": 10862, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -205215,17 +150900,12 @@ }, { "id": 10863, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -205233,17 +150913,12 @@ }, { "id": 10864, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -205251,17 +150926,12 @@ }, { "id": 10865, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -205270,17 +150940,12 @@ }, { "id": 10866, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -205289,17 +150954,12 @@ }, { "id": 10867, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -205308,17 +150968,12 @@ }, { "id": 10868, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -205327,17 +150982,12 @@ }, { "id": 10869, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -205345,17 +150995,12 @@ }, { "id": 10870, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -205363,17 +151008,12 @@ }, { "id": 10871, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -205381,17 +151021,12 @@ }, { "id": 10872, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -205399,17 +151034,12 @@ }, { "id": 10873, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -205417,17 +151047,12 @@ }, { "id": 10874, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -205435,17 +151060,12 @@ }, { "id": 10875, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -205454,17 +151074,12 @@ }, { "id": 10876, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -205473,17 +151088,12 @@ }, { "id": 10877, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -205492,17 +151102,12 @@ }, { "id": 10878, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -205511,17 +151116,12 @@ }, { "id": 10879, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -205530,17 +151130,12 @@ }, { "id": 10880, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -205549,17 +151144,12 @@ }, { "id": 10881, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -205568,17 +151158,12 @@ }, { "id": 10882, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -205587,17 +151172,12 @@ }, { "id": 10883, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -205605,17 +151185,12 @@ }, { "id": 10884, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -205623,17 +151198,12 @@ }, { "id": 10885, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -205642,17 +151212,12 @@ }, { "id": 10886, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -205661,17 +151226,12 @@ }, { "id": 10887, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -205680,17 +151240,12 @@ }, { "id": 10888, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -205699,17 +151254,12 @@ }, { "id": 10889, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -205717,17 +151267,12 @@ }, { "id": 10890, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -205735,17 +151280,12 @@ }, { "id": 10891, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -205753,17 +151293,12 @@ }, { "id": 10892, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -205771,17 +151306,12 @@ }, { "id": 10893, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -205789,17 +151319,12 @@ }, { "id": 10894, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -205807,17 +151332,12 @@ }, { "id": 10895, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -205826,17 +151346,12 @@ }, { "id": 10896, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -205845,17 +151360,12 @@ }, { "id": 10897, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -205864,17 +151374,12 @@ }, { "id": 10898, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -205883,17 +151388,12 @@ }, { "id": 10899, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -205902,17 +151402,12 @@ }, { "id": 10900, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -205921,17 +151416,12 @@ }, { "id": 10901, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -205940,17 +151430,12 @@ }, { "id": 10902, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -205959,17 +151444,12 @@ }, { "id": 10903, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -205977,17 +151457,12 @@ }, { "id": 10904, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -205995,17 +151470,12 @@ }, { "id": 10905, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -206014,17 +151484,12 @@ }, { "id": 10906, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -206033,17 +151498,12 @@ }, { "id": 10907, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -206052,17 +151512,12 @@ }, { "id": 10908, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -206071,17 +151526,12 @@ }, { "id": 10909, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -206089,17 +151539,12 @@ }, { "id": 10910, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -206107,17 +151552,12 @@ }, { "id": 10911, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -206125,17 +151565,12 @@ }, { "id": 10912, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -206143,17 +151578,12 @@ }, { "id": 10913, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -206161,17 +151591,12 @@ }, { "id": 10914, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -206179,17 +151604,12 @@ }, { "id": 10915, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -206198,17 +151618,12 @@ }, { "id": 10916, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -206217,17 +151632,12 @@ }, { "id": 10917, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -206236,17 +151646,12 @@ }, { "id": 10918, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -206255,17 +151660,12 @@ }, { "id": 10919, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -206274,17 +151674,12 @@ }, { "id": 10920, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -206293,17 +151688,12 @@ }, { "id": 10921, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -206312,17 +151702,12 @@ }, { "id": 10922, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -206331,17 +151716,12 @@ }, { "id": 10923, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -206349,17 +151729,12 @@ }, { "id": 10924, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -206367,17 +151742,12 @@ }, { "id": 10925, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -206386,17 +151756,12 @@ }, { "id": 10926, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -206405,17 +151770,12 @@ }, { "id": 10927, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -206424,17 +151784,12 @@ }, { "id": 10928, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -206443,17 +151798,12 @@ }, { "id": 10929, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -206461,17 +151811,12 @@ }, { "id": 10930, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -206479,17 +151824,12 @@ }, { "id": 10931, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -206497,17 +151837,12 @@ }, { "id": 10932, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -206547,26 +151882,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 10944, "states": [ { "id": 10933, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -206574,17 +151904,12 @@ }, { "id": 10934, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -206592,17 +151917,12 @@ }, { "id": 10935, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -206611,17 +151931,12 @@ }, { "id": 10936, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -206630,17 +151945,12 @@ }, { "id": 10937, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -206649,17 +151959,12 @@ }, { "id": 10938, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -206668,17 +151973,12 @@ }, { "id": 10939, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -206687,17 +151987,12 @@ }, { "id": 10940, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -206706,17 +152001,12 @@ }, { "id": 10941, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -206725,17 +152015,12 @@ }, { "id": 10942, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -206744,17 +152029,12 @@ }, { "id": 10943, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -206762,17 +152042,12 @@ }, { "id": 10944, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -206780,17 +152055,12 @@ }, { "id": 10945, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -206799,17 +152069,12 @@ }, { "id": 10946, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -206818,17 +152083,12 @@ }, { "id": 10947, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -206837,17 +152097,12 @@ }, { "id": 10948, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -206856,17 +152111,12 @@ }, { "id": 10949, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -206874,17 +152124,12 @@ }, { "id": 10950, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -206892,17 +152137,12 @@ }, { "id": 10951, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -206910,17 +152150,12 @@ }, { "id": 10952, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -206928,17 +152163,12 @@ }, { "id": 10953, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -206946,17 +152176,12 @@ }, { "id": 10954, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -206964,17 +152189,12 @@ }, { "id": 10955, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -206983,17 +152203,12 @@ }, { "id": 10956, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -207002,17 +152217,12 @@ }, { "id": 10957, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -207021,17 +152231,12 @@ }, { "id": 10958, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -207040,17 +152245,12 @@ }, { "id": 10959, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -207059,17 +152259,12 @@ }, { "id": 10960, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -207078,17 +152273,12 @@ }, { "id": 10961, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -207097,17 +152287,12 @@ }, { "id": 10962, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -207116,17 +152301,12 @@ }, { "id": 10963, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -207134,17 +152314,12 @@ }, { "id": 10964, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -207152,17 +152327,12 @@ }, { "id": 10965, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -207171,17 +152341,12 @@ }, { "id": 10966, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -207190,17 +152355,12 @@ }, { "id": 10967, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -207209,17 +152369,12 @@ }, { "id": 10968, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -207228,17 +152383,12 @@ }, { "id": 10969, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -207246,17 +152396,12 @@ }, { "id": 10970, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -207264,17 +152409,12 @@ }, { "id": 10971, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -207282,17 +152422,12 @@ }, { "id": 10972, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -207300,17 +152435,12 @@ }, { "id": 10973, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -207318,17 +152448,12 @@ }, { "id": 10974, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -207336,17 +152461,12 @@ }, { "id": 10975, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -207355,17 +152475,12 @@ }, { "id": 10976, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -207374,17 +152489,12 @@ }, { "id": 10977, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -207393,17 +152503,12 @@ }, { "id": 10978, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -207412,17 +152517,12 @@ }, { "id": 10979, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -207431,17 +152531,12 @@ }, { "id": 10980, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -207450,17 +152545,12 @@ }, { "id": 10981, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -207469,17 +152559,12 @@ }, { "id": 10982, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -207488,17 +152573,12 @@ }, { "id": 10983, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -207506,17 +152586,12 @@ }, { "id": 10984, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -207524,17 +152599,12 @@ }, { "id": 10985, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -207543,17 +152613,12 @@ }, { "id": 10986, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -207562,17 +152627,12 @@ }, { "id": 10987, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -207581,17 +152641,12 @@ }, { "id": 10988, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -207600,17 +152655,12 @@ }, { "id": 10989, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -207618,17 +152668,12 @@ }, { "id": 10990, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -207636,17 +152681,12 @@ }, { "id": 10991, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -207654,17 +152694,12 @@ }, { "id": 10992, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -207672,17 +152707,12 @@ }, { "id": 10993, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -207690,17 +152720,12 @@ }, { "id": 10994, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -207708,17 +152733,12 @@ }, { "id": 10995, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -207727,17 +152747,12 @@ }, { "id": 10996, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -207746,17 +152761,12 @@ }, { "id": 10997, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -207765,17 +152775,12 @@ }, { "id": 10998, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -207784,17 +152789,12 @@ }, { "id": 10999, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -207803,17 +152803,12 @@ }, { "id": 11000, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -207822,17 +152817,12 @@ }, { "id": 11001, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -207841,17 +152831,12 @@ }, { "id": 11002, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -207860,17 +152845,12 @@ }, { "id": 11003, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -207878,17 +152858,12 @@ }, { "id": 11004, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -207896,17 +152871,12 @@ }, { "id": 11005, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -207915,17 +152885,12 @@ }, { "id": 11006, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -207934,17 +152899,12 @@ }, { "id": 11007, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -207953,17 +152913,12 @@ }, { "id": 11008, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -207972,17 +152927,12 @@ }, { "id": 11009, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -207990,17 +152940,12 @@ }, { "id": 11010, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -208008,17 +152953,12 @@ }, { "id": 11011, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -208026,17 +152966,12 @@ }, { "id": 11012, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -208076,26 +153011,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11024, "states": [ { "id": 11013, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -208103,17 +153033,12 @@ }, { "id": 11014, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -208121,17 +153046,12 @@ }, { "id": 11015, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -208140,17 +153060,12 @@ }, { "id": 11016, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -208159,17 +153074,12 @@ }, { "id": 11017, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -208178,17 +153088,12 @@ }, { "id": 11018, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -208197,17 +153102,12 @@ }, { "id": 11019, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -208216,17 +153116,12 @@ }, { "id": 11020, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -208235,17 +153130,12 @@ }, { "id": 11021, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -208254,17 +153144,12 @@ }, { "id": 11022, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -208273,17 +153158,12 @@ }, { "id": 11023, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -208291,17 +153171,12 @@ }, { "id": 11024, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -208309,17 +153184,12 @@ }, { "id": 11025, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -208328,17 +153198,12 @@ }, { "id": 11026, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -208347,17 +153212,12 @@ }, { "id": 11027, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -208366,17 +153226,12 @@ }, { "id": 11028, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -208385,17 +153240,12 @@ }, { "id": 11029, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -208403,17 +153253,12 @@ }, { "id": 11030, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -208421,17 +153266,12 @@ }, { "id": 11031, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -208439,17 +153279,12 @@ }, { "id": 11032, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -208457,17 +153292,12 @@ }, { "id": 11033, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -208475,17 +153305,12 @@ }, { "id": 11034, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -208493,17 +153318,12 @@ }, { "id": 11035, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -208512,17 +153332,12 @@ }, { "id": 11036, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -208531,17 +153346,12 @@ }, { "id": 11037, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -208550,17 +153360,12 @@ }, { "id": 11038, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -208569,17 +153374,12 @@ }, { "id": 11039, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -208588,17 +153388,12 @@ }, { "id": 11040, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -208607,17 +153402,12 @@ }, { "id": 11041, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -208626,17 +153416,12 @@ }, { "id": 11042, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -208645,17 +153430,12 @@ }, { "id": 11043, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -208663,17 +153443,12 @@ }, { "id": 11044, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -208681,17 +153456,12 @@ }, { "id": 11045, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -208700,17 +153470,12 @@ }, { "id": 11046, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -208719,17 +153484,12 @@ }, { "id": 11047, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -208738,17 +153498,12 @@ }, { "id": 11048, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -208757,17 +153512,12 @@ }, { "id": 11049, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -208775,17 +153525,12 @@ }, { "id": 11050, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -208793,17 +153538,12 @@ }, { "id": 11051, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -208811,17 +153551,12 @@ }, { "id": 11052, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -208829,17 +153564,12 @@ }, { "id": 11053, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -208847,17 +153577,12 @@ }, { "id": 11054, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -208865,17 +153590,12 @@ }, { "id": 11055, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -208884,17 +153604,12 @@ }, { "id": 11056, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -208903,17 +153618,12 @@ }, { "id": 11057, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -208922,17 +153632,12 @@ }, { "id": 11058, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -208941,17 +153646,12 @@ }, { "id": 11059, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -208960,17 +153660,12 @@ }, { "id": 11060, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -208979,17 +153674,12 @@ }, { "id": 11061, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -208998,17 +153688,12 @@ }, { "id": 11062, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -209017,17 +153702,12 @@ }, { "id": 11063, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -209035,17 +153715,12 @@ }, { "id": 11064, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -209053,17 +153728,12 @@ }, { "id": 11065, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -209072,17 +153742,12 @@ }, { "id": 11066, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -209091,17 +153756,12 @@ }, { "id": 11067, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -209110,17 +153770,12 @@ }, { "id": 11068, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -209129,17 +153784,12 @@ }, { "id": 11069, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -209147,17 +153797,12 @@ }, { "id": 11070, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -209165,17 +153810,12 @@ }, { "id": 11071, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -209183,17 +153823,12 @@ }, { "id": 11072, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -209201,17 +153836,12 @@ }, { "id": 11073, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -209219,17 +153849,12 @@ }, { "id": 11074, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -209237,17 +153862,12 @@ }, { "id": 11075, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -209256,17 +153876,12 @@ }, { "id": 11076, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -209275,17 +153890,12 @@ }, { "id": 11077, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -209294,17 +153904,12 @@ }, { "id": 11078, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -209313,17 +153918,12 @@ }, { "id": 11079, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -209332,17 +153932,12 @@ }, { "id": 11080, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -209351,17 +153946,12 @@ }, { "id": 11081, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -209370,17 +153960,12 @@ }, { "id": 11082, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -209389,17 +153974,12 @@ }, { "id": 11083, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -209407,17 +153987,12 @@ }, { "id": 11084, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -209425,17 +154000,12 @@ }, { "id": 11085, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -209444,17 +154014,12 @@ }, { "id": 11086, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -209463,17 +154028,12 @@ }, { "id": 11087, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -209482,17 +154042,12 @@ }, { "id": 11088, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -209501,17 +154056,12 @@ }, { "id": 11089, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -209519,17 +154069,12 @@ }, { "id": 11090, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -209537,17 +154082,12 @@ }, { "id": 11091, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -209555,17 +154095,12 @@ }, { "id": 11092, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -209605,26 +154140,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11104, "states": [ { "id": 11093, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -209632,17 +154162,12 @@ }, { "id": 11094, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -209650,17 +154175,12 @@ }, { "id": 11095, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -209669,17 +154189,12 @@ }, { "id": 11096, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -209688,17 +154203,12 @@ }, { "id": 11097, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -209707,17 +154217,12 @@ }, { "id": 11098, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -209726,17 +154231,12 @@ }, { "id": 11099, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -209745,17 +154245,12 @@ }, { "id": 11100, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -209764,17 +154259,12 @@ }, { "id": 11101, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -209783,17 +154273,12 @@ }, { "id": 11102, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -209802,17 +154287,12 @@ }, { "id": 11103, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -209820,17 +154300,12 @@ }, { "id": 11104, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -209838,17 +154313,12 @@ }, { "id": 11105, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -209857,17 +154327,12 @@ }, { "id": 11106, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -209876,17 +154341,12 @@ }, { "id": 11107, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -209895,17 +154355,12 @@ }, { "id": 11108, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -209914,17 +154369,12 @@ }, { "id": 11109, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -209932,17 +154382,12 @@ }, { "id": 11110, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -209950,17 +154395,12 @@ }, { "id": 11111, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -209968,17 +154408,12 @@ }, { "id": 11112, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -209986,17 +154421,12 @@ }, { "id": 11113, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -210004,17 +154434,12 @@ }, { "id": 11114, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -210022,17 +154447,12 @@ }, { "id": 11115, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -210041,17 +154461,12 @@ }, { "id": 11116, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -210060,17 +154475,12 @@ }, { "id": 11117, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -210079,17 +154489,12 @@ }, { "id": 11118, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -210098,17 +154503,12 @@ }, { "id": 11119, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -210117,17 +154517,12 @@ }, { "id": 11120, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -210136,17 +154531,12 @@ }, { "id": 11121, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -210155,17 +154545,12 @@ }, { "id": 11122, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -210174,17 +154559,12 @@ }, { "id": 11123, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -210192,17 +154572,12 @@ }, { "id": 11124, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -210210,17 +154585,12 @@ }, { "id": 11125, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -210229,17 +154599,12 @@ }, { "id": 11126, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -210248,17 +154613,12 @@ }, { "id": 11127, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -210267,17 +154627,12 @@ }, { "id": 11128, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -210286,17 +154641,12 @@ }, { "id": 11129, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -210304,17 +154654,12 @@ }, { "id": 11130, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -210322,17 +154667,12 @@ }, { "id": 11131, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -210340,17 +154680,12 @@ }, { "id": 11132, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -210358,17 +154693,12 @@ }, { "id": 11133, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -210376,17 +154706,12 @@ }, { "id": 11134, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -210394,17 +154719,12 @@ }, { "id": 11135, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -210413,17 +154733,12 @@ }, { "id": 11136, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -210432,17 +154747,12 @@ }, { "id": 11137, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -210451,17 +154761,12 @@ }, { "id": 11138, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -210470,17 +154775,12 @@ }, { "id": 11139, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -210489,17 +154789,12 @@ }, { "id": 11140, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -210508,17 +154803,12 @@ }, { "id": 11141, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -210527,17 +154817,12 @@ }, { "id": 11142, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -210546,17 +154831,12 @@ }, { "id": 11143, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -210564,17 +154844,12 @@ }, { "id": 11144, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -210582,17 +154857,12 @@ }, { "id": 11145, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -210601,17 +154871,12 @@ }, { "id": 11146, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -210620,17 +154885,12 @@ }, { "id": 11147, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -210639,17 +154899,12 @@ }, { "id": 11148, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -210658,17 +154913,12 @@ }, { "id": 11149, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -210676,17 +154926,12 @@ }, { "id": 11150, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -210694,17 +154939,12 @@ }, { "id": 11151, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -210712,17 +154952,12 @@ }, { "id": 11152, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -210730,17 +154965,12 @@ }, { "id": 11153, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -210748,17 +154978,12 @@ }, { "id": 11154, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -210766,17 +154991,12 @@ }, { "id": 11155, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -210785,17 +155005,12 @@ }, { "id": 11156, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -210804,17 +155019,12 @@ }, { "id": 11157, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -210823,17 +155033,12 @@ }, { "id": 11158, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -210842,17 +155047,12 @@ }, { "id": 11159, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -210861,17 +155061,12 @@ }, { "id": 11160, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -210880,17 +155075,12 @@ }, { "id": 11161, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -210899,17 +155089,12 @@ }, { "id": 11162, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -210918,17 +155103,12 @@ }, { "id": 11163, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -210936,17 +155116,12 @@ }, { "id": 11164, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -210954,17 +155129,12 @@ }, { "id": 11165, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -210973,17 +155143,12 @@ }, { "id": 11166, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -210992,17 +155157,12 @@ }, { "id": 11167, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -211011,17 +155171,12 @@ }, { "id": 11168, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -211030,17 +155185,12 @@ }, { "id": 11169, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -211048,17 +155198,12 @@ }, { "id": 11170, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -211066,17 +155211,12 @@ }, { "id": 11171, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -211084,17 +155224,12 @@ }, { "id": 11172, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -211134,26 +155269,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11184, "states": [ { "id": 11173, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -211161,17 +155291,12 @@ }, { "id": 11174, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -211179,17 +155304,12 @@ }, { "id": 11175, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -211198,17 +155318,12 @@ }, { "id": 11176, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -211217,17 +155332,12 @@ }, { "id": 11177, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -211236,17 +155346,12 @@ }, { "id": 11178, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -211255,17 +155360,12 @@ }, { "id": 11179, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -211274,17 +155374,12 @@ }, { "id": 11180, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -211293,17 +155388,12 @@ }, { "id": 11181, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -211312,17 +155402,12 @@ }, { "id": 11182, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -211331,17 +155416,12 @@ }, { "id": 11183, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -211349,17 +155429,12 @@ }, { "id": 11184, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -211367,17 +155442,12 @@ }, { "id": 11185, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -211386,17 +155456,12 @@ }, { "id": 11186, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -211405,17 +155470,12 @@ }, { "id": 11187, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -211424,17 +155484,12 @@ }, { "id": 11188, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -211443,17 +155498,12 @@ }, { "id": 11189, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -211461,17 +155511,12 @@ }, { "id": 11190, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -211479,17 +155524,12 @@ }, { "id": 11191, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -211497,17 +155537,12 @@ }, { "id": 11192, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -211515,17 +155550,12 @@ }, { "id": 11193, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -211533,17 +155563,12 @@ }, { "id": 11194, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -211551,17 +155576,12 @@ }, { "id": 11195, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -211570,17 +155590,12 @@ }, { "id": 11196, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -211589,17 +155604,12 @@ }, { "id": 11197, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -211608,17 +155618,12 @@ }, { "id": 11198, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -211627,17 +155632,12 @@ }, { "id": 11199, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -211646,17 +155646,12 @@ }, { "id": 11200, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -211665,17 +155660,12 @@ }, { "id": 11201, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -211684,17 +155674,12 @@ }, { "id": 11202, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -211703,17 +155688,12 @@ }, { "id": 11203, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -211721,17 +155701,12 @@ }, { "id": 11204, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -211739,17 +155714,12 @@ }, { "id": 11205, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -211758,17 +155728,12 @@ }, { "id": 11206, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -211777,17 +155742,12 @@ }, { "id": 11207, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -211796,17 +155756,12 @@ }, { "id": 11208, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -211815,17 +155770,12 @@ }, { "id": 11209, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -211833,17 +155783,12 @@ }, { "id": 11210, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -211851,17 +155796,12 @@ }, { "id": 11211, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -211869,17 +155809,12 @@ }, { "id": 11212, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -211887,17 +155822,12 @@ }, { "id": 11213, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -211905,17 +155835,12 @@ }, { "id": 11214, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -211923,17 +155848,12 @@ }, { "id": 11215, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -211942,17 +155862,12 @@ }, { "id": 11216, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -211961,17 +155876,12 @@ }, { "id": 11217, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -211980,17 +155890,12 @@ }, { "id": 11218, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -211999,17 +155904,12 @@ }, { "id": 11219, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -212018,17 +155918,12 @@ }, { "id": 11220, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -212037,17 +155932,12 @@ }, { "id": 11221, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -212056,17 +155946,12 @@ }, { "id": 11222, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -212075,17 +155960,12 @@ }, { "id": 11223, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -212093,17 +155973,12 @@ }, { "id": 11224, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -212111,17 +155986,12 @@ }, { "id": 11225, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -212130,17 +156000,12 @@ }, { "id": 11226, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -212149,17 +156014,12 @@ }, { "id": 11227, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -212168,17 +156028,12 @@ }, { "id": 11228, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -212187,17 +156042,12 @@ }, { "id": 11229, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -212205,17 +156055,12 @@ }, { "id": 11230, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -212223,17 +156068,12 @@ }, { "id": 11231, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -212241,17 +156081,12 @@ }, { "id": 11232, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -212259,17 +156094,12 @@ }, { "id": 11233, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -212277,17 +156107,12 @@ }, { "id": 11234, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -212295,17 +156120,12 @@ }, { "id": 11235, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -212314,17 +156134,12 @@ }, { "id": 11236, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -212333,17 +156148,12 @@ }, { "id": 11237, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -212352,17 +156162,12 @@ }, { "id": 11238, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -212371,17 +156176,12 @@ }, { "id": 11239, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -212390,17 +156190,12 @@ }, { "id": 11240, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -212409,17 +156204,12 @@ }, { "id": 11241, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -212428,17 +156218,12 @@ }, { "id": 11242, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -212447,17 +156232,12 @@ }, { "id": 11243, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -212465,17 +156245,12 @@ }, { "id": 11244, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -212483,17 +156258,12 @@ }, { "id": 11245, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -212502,17 +156272,12 @@ }, { "id": 11246, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -212521,17 +156286,12 @@ }, { "id": 11247, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -212540,17 +156300,12 @@ }, { "id": 11248, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -212559,17 +156314,12 @@ }, { "id": 11249, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -212577,17 +156327,12 @@ }, { "id": 11250, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -212595,17 +156340,12 @@ }, { "id": 11251, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -212613,17 +156353,12 @@ }, { "id": 11252, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -212667,16 +156402,11 @@ "states": [ { "id": 11253, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -212694,38 +156424,28 @@ "blast_resistance": 3600000.8, "item_id": 473, "properties": [ - 795783032 + 989206919 ], "default_state_id": 11255, "states": [ { "id": 11254, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 11255, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -212743,457 +156463,297 @@ "blast_resistance": 3600000.8, "item_id": 474, "properties": [ - 144271317, - 795783032 + -500576852, + 989206919 ], "default_state_id": 11287, "states": [ { "id": 11256, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11257, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11258, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11259, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11260, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11261, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11262, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11263, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11264, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11265, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11266, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11267, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11268, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11269, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11270, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11271, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11272, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11273, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11274, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11275, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11276, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11277, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11278, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 11, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11279, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 11, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11280, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11281, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11282, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11283, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11284, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11285, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11286, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11287, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -213230,1034 +156790,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 11303, "states": [ { "id": 11288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 11300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 11316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 11332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 11344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 11348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 11351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -214300,17 +157540,12 @@ "states": [ { "id": 11352, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -214353,17 +157588,12 @@ "states": [ { "id": 11353, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -214406,17 +157636,12 @@ "states": [ { "id": 11354, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -214455,26 +157680,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11366, "states": [ { "id": 11355, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -214482,17 +157702,12 @@ }, { "id": 11356, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -214500,17 +157715,12 @@ }, { "id": 11357, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -214519,17 +157729,12 @@ }, { "id": 11358, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -214538,17 +157743,12 @@ }, { "id": 11359, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -214557,17 +157757,12 @@ }, { "id": 11360, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -214576,17 +157771,12 @@ }, { "id": 11361, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -214595,17 +157785,12 @@ }, { "id": 11362, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -214614,17 +157799,12 @@ }, { "id": 11363, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -214633,17 +157813,12 @@ }, { "id": 11364, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -214652,17 +157827,12 @@ }, { "id": 11365, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -214670,17 +157840,12 @@ }, { "id": 11366, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -214688,17 +157853,12 @@ }, { "id": 11367, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -214707,17 +157867,12 @@ }, { "id": 11368, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -214726,17 +157881,12 @@ }, { "id": 11369, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -214745,17 +157895,12 @@ }, { "id": 11370, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -214764,17 +157909,12 @@ }, { "id": 11371, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -214782,17 +157922,12 @@ }, { "id": 11372, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -214800,17 +157935,12 @@ }, { "id": 11373, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -214818,17 +157948,12 @@ }, { "id": 11374, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -214836,17 +157961,12 @@ }, { "id": 11375, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -214854,17 +157974,12 @@ }, { "id": 11376, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -214872,17 +157987,12 @@ }, { "id": 11377, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -214891,17 +158001,12 @@ }, { "id": 11378, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -214910,17 +158015,12 @@ }, { "id": 11379, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -214929,17 +158029,12 @@ }, { "id": 11380, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -214948,17 +158043,12 @@ }, { "id": 11381, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -214967,17 +158057,12 @@ }, { "id": 11382, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -214986,17 +158071,12 @@ }, { "id": 11383, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -215005,17 +158085,12 @@ }, { "id": 11384, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -215024,17 +158099,12 @@ }, { "id": 11385, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -215042,17 +158112,12 @@ }, { "id": 11386, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -215060,17 +158125,12 @@ }, { "id": 11387, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -215079,17 +158139,12 @@ }, { "id": 11388, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -215098,17 +158153,12 @@ }, { "id": 11389, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -215117,17 +158167,12 @@ }, { "id": 11390, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -215136,17 +158181,12 @@ }, { "id": 11391, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -215154,17 +158194,12 @@ }, { "id": 11392, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -215172,17 +158207,12 @@ }, { "id": 11393, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -215190,17 +158220,12 @@ }, { "id": 11394, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -215208,17 +158233,12 @@ }, { "id": 11395, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -215226,17 +158246,12 @@ }, { "id": 11396, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -215244,17 +158259,12 @@ }, { "id": 11397, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -215263,17 +158273,12 @@ }, { "id": 11398, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -215282,17 +158287,12 @@ }, { "id": 11399, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -215301,17 +158301,12 @@ }, { "id": 11400, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -215320,17 +158315,12 @@ }, { "id": 11401, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -215339,17 +158329,12 @@ }, { "id": 11402, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -215358,17 +158343,12 @@ }, { "id": 11403, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -215377,17 +158357,12 @@ }, { "id": 11404, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -215396,17 +158371,12 @@ }, { "id": 11405, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -215414,17 +158384,12 @@ }, { "id": 11406, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -215432,17 +158397,12 @@ }, { "id": 11407, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -215451,17 +158411,12 @@ }, { "id": 11408, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -215470,17 +158425,12 @@ }, { "id": 11409, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -215489,17 +158439,12 @@ }, { "id": 11410, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -215508,17 +158453,12 @@ }, { "id": 11411, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -215526,17 +158466,12 @@ }, { "id": 11412, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -215544,17 +158479,12 @@ }, { "id": 11413, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -215562,17 +158492,12 @@ }, { "id": 11414, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -215580,17 +158505,12 @@ }, { "id": 11415, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -215598,17 +158518,12 @@ }, { "id": 11416, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -215616,17 +158531,12 @@ }, { "id": 11417, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -215635,17 +158545,12 @@ }, { "id": 11418, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -215654,17 +158559,12 @@ }, { "id": 11419, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -215673,17 +158573,12 @@ }, { "id": 11420, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -215692,17 +158587,12 @@ }, { "id": 11421, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -215711,17 +158601,12 @@ }, { "id": 11422, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -215730,17 +158615,12 @@ }, { "id": 11423, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -215749,17 +158629,12 @@ }, { "id": 11424, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -215768,17 +158643,12 @@ }, { "id": 11425, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -215786,17 +158656,12 @@ }, { "id": 11426, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -215804,17 +158669,12 @@ }, { "id": 11427, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -215823,17 +158683,12 @@ }, { "id": 11428, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -215842,17 +158697,12 @@ }, { "id": 11429, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -215861,17 +158711,12 @@ }, { "id": 11430, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -215880,17 +158725,12 @@ }, { "id": 11431, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -215898,17 +158738,12 @@ }, { "id": 11432, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -215916,17 +158751,12 @@ }, { "id": 11433, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -215934,17 +158764,12 @@ }, { "id": 11434, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -215984,26 +158809,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11446, "states": [ { "id": 11435, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -216011,17 +158831,12 @@ }, { "id": 11436, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -216029,17 +158844,12 @@ }, { "id": 11437, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -216048,17 +158858,12 @@ }, { "id": 11438, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -216067,17 +158872,12 @@ }, { "id": 11439, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -216086,17 +158886,12 @@ }, { "id": 11440, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -216105,17 +158900,12 @@ }, { "id": 11441, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -216124,17 +158914,12 @@ }, { "id": 11442, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -216143,17 +158928,12 @@ }, { "id": 11443, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -216162,17 +158942,12 @@ }, { "id": 11444, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -216181,17 +158956,12 @@ }, { "id": 11445, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -216199,17 +158969,12 @@ }, { "id": 11446, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -216217,17 +158982,12 @@ }, { "id": 11447, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -216236,17 +158996,12 @@ }, { "id": 11448, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -216255,17 +159010,12 @@ }, { "id": 11449, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -216274,17 +159024,12 @@ }, { "id": 11450, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -216293,17 +159038,12 @@ }, { "id": 11451, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -216311,17 +159051,12 @@ }, { "id": 11452, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -216329,17 +159064,12 @@ }, { "id": 11453, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -216347,17 +159077,12 @@ }, { "id": 11454, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -216365,17 +159090,12 @@ }, { "id": 11455, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -216383,17 +159103,12 @@ }, { "id": 11456, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -216401,17 +159116,12 @@ }, { "id": 11457, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -216420,17 +159130,12 @@ }, { "id": 11458, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -216439,17 +159144,12 @@ }, { "id": 11459, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -216458,17 +159158,12 @@ }, { "id": 11460, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -216477,17 +159172,12 @@ }, { "id": 11461, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -216496,17 +159186,12 @@ }, { "id": 11462, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -216515,17 +159200,12 @@ }, { "id": 11463, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -216534,17 +159214,12 @@ }, { "id": 11464, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -216553,17 +159228,12 @@ }, { "id": 11465, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -216571,17 +159241,12 @@ }, { "id": 11466, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -216589,17 +159254,12 @@ }, { "id": 11467, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -216608,17 +159268,12 @@ }, { "id": 11468, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -216627,17 +159282,12 @@ }, { "id": 11469, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -216646,17 +159296,12 @@ }, { "id": 11470, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -216665,17 +159310,12 @@ }, { "id": 11471, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -216683,17 +159323,12 @@ }, { "id": 11472, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -216701,17 +159336,12 @@ }, { "id": 11473, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -216719,17 +159349,12 @@ }, { "id": 11474, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -216737,17 +159362,12 @@ }, { "id": 11475, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -216755,17 +159375,12 @@ }, { "id": 11476, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -216773,17 +159388,12 @@ }, { "id": 11477, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -216792,17 +159402,12 @@ }, { "id": 11478, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -216811,17 +159416,12 @@ }, { "id": 11479, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -216830,17 +159430,12 @@ }, { "id": 11480, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -216849,17 +159444,12 @@ }, { "id": 11481, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -216868,17 +159458,12 @@ }, { "id": 11482, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -216887,17 +159472,12 @@ }, { "id": 11483, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -216906,17 +159486,12 @@ }, { "id": 11484, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -216925,17 +159500,12 @@ }, { "id": 11485, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -216943,17 +159513,12 @@ }, { "id": 11486, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -216961,17 +159526,12 @@ }, { "id": 11487, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -216980,17 +159540,12 @@ }, { "id": 11488, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -216999,17 +159554,12 @@ }, { "id": 11489, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -217018,17 +159568,12 @@ }, { "id": 11490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -217037,17 +159582,12 @@ }, { "id": 11491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -217055,17 +159595,12 @@ }, { "id": 11492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -217073,17 +159608,12 @@ }, { "id": 11493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -217091,17 +159621,12 @@ }, { "id": 11494, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -217109,17 +159634,12 @@ }, { "id": 11495, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -217127,17 +159647,12 @@ }, { "id": 11496, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -217145,17 +159660,12 @@ }, { "id": 11497, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -217164,17 +159674,12 @@ }, { "id": 11498, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -217183,17 +159688,12 @@ }, { "id": 11499, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -217202,17 +159702,12 @@ }, { "id": 11500, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -217221,17 +159716,12 @@ }, { "id": 11501, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -217240,17 +159730,12 @@ }, { "id": 11502, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -217259,17 +159744,12 @@ }, { "id": 11503, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -217278,17 +159758,12 @@ }, { "id": 11504, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -217297,17 +159772,12 @@ }, { "id": 11505, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -217315,17 +159785,12 @@ }, { "id": 11506, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -217333,17 +159798,12 @@ }, { "id": 11507, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -217352,17 +159812,12 @@ }, { "id": 11508, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -217371,17 +159826,12 @@ }, { "id": 11509, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -217390,17 +159840,12 @@ }, { "id": 11510, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -217409,17 +159854,12 @@ }, { "id": 11511, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -217427,17 +159867,12 @@ }, { "id": 11512, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -217445,17 +159880,12 @@ }, { "id": 11513, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -217463,17 +159893,12 @@ }, { "id": 11514, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -217513,26 +159938,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11526, "states": [ { "id": 11515, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -217540,17 +159960,12 @@ }, { "id": 11516, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -217558,17 +159973,12 @@ }, { "id": 11517, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -217577,17 +159987,12 @@ }, { "id": 11518, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -217596,17 +160001,12 @@ }, { "id": 11519, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -217615,17 +160015,12 @@ }, { "id": 11520, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -217634,17 +160029,12 @@ }, { "id": 11521, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -217653,17 +160043,12 @@ }, { "id": 11522, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -217672,17 +160057,12 @@ }, { "id": 11523, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -217691,17 +160071,12 @@ }, { "id": 11524, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -217710,17 +160085,12 @@ }, { "id": 11525, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -217728,17 +160098,12 @@ }, { "id": 11526, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -217746,17 +160111,12 @@ }, { "id": 11527, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -217765,17 +160125,12 @@ }, { "id": 11528, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -217784,17 +160139,12 @@ }, { "id": 11529, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -217803,17 +160153,12 @@ }, { "id": 11530, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -217822,17 +160167,12 @@ }, { "id": 11531, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -217840,17 +160180,12 @@ }, { "id": 11532, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -217858,17 +160193,12 @@ }, { "id": 11533, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -217876,17 +160206,12 @@ }, { "id": 11534, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -217894,17 +160219,12 @@ }, { "id": 11535, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -217912,17 +160232,12 @@ }, { "id": 11536, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -217930,17 +160245,12 @@ }, { "id": 11537, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -217949,17 +160259,12 @@ }, { "id": 11538, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -217968,17 +160273,12 @@ }, { "id": 11539, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -217987,17 +160287,12 @@ }, { "id": 11540, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -218006,17 +160301,12 @@ }, { "id": 11541, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -218025,17 +160315,12 @@ }, { "id": 11542, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -218044,17 +160329,12 @@ }, { "id": 11543, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -218063,17 +160343,12 @@ }, { "id": 11544, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -218082,17 +160357,12 @@ }, { "id": 11545, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -218100,17 +160370,12 @@ }, { "id": 11546, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -218118,17 +160383,12 @@ }, { "id": 11547, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -218137,17 +160397,12 @@ }, { "id": 11548, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -218156,17 +160411,12 @@ }, { "id": 11549, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -218175,17 +160425,12 @@ }, { "id": 11550, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -218194,17 +160439,12 @@ }, { "id": 11551, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -218212,17 +160452,12 @@ }, { "id": 11552, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -218230,17 +160465,12 @@ }, { "id": 11553, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -218248,17 +160478,12 @@ }, { "id": 11554, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -218266,17 +160491,12 @@ }, { "id": 11555, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -218284,17 +160504,12 @@ }, { "id": 11556, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -218302,17 +160517,12 @@ }, { "id": 11557, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -218321,17 +160531,12 @@ }, { "id": 11558, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -218340,17 +160545,12 @@ }, { "id": 11559, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -218359,17 +160559,12 @@ }, { "id": 11560, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -218378,17 +160573,12 @@ }, { "id": 11561, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -218397,17 +160587,12 @@ }, { "id": 11562, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -218416,17 +160601,12 @@ }, { "id": 11563, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -218435,17 +160615,12 @@ }, { "id": 11564, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -218454,17 +160629,12 @@ }, { "id": 11565, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -218472,17 +160642,12 @@ }, { "id": 11566, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -218490,17 +160655,12 @@ }, { "id": 11567, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -218509,17 +160669,12 @@ }, { "id": 11568, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -218528,17 +160683,12 @@ }, { "id": 11569, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -218547,17 +160697,12 @@ }, { "id": 11570, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -218566,17 +160711,12 @@ }, { "id": 11571, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -218584,17 +160724,12 @@ }, { "id": 11572, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -218602,17 +160737,12 @@ }, { "id": 11573, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -218620,17 +160750,12 @@ }, { "id": 11574, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -218638,17 +160763,12 @@ }, { "id": 11575, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -218656,17 +160776,12 @@ }, { "id": 11576, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -218674,17 +160789,12 @@ }, { "id": 11577, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -218693,17 +160803,12 @@ }, { "id": 11578, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -218712,17 +160817,12 @@ }, { "id": 11579, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -218731,17 +160831,12 @@ }, { "id": 11580, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -218750,17 +160845,12 @@ }, { "id": 11581, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -218769,17 +160859,12 @@ }, { "id": 11582, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -218788,17 +160873,12 @@ }, { "id": 11583, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -218807,17 +160887,12 @@ }, { "id": 11584, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -218826,17 +160901,12 @@ }, { "id": 11585, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -218844,17 +160914,12 @@ }, { "id": 11586, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -218862,17 +160927,12 @@ }, { "id": 11587, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -218881,17 +160941,12 @@ }, { "id": 11588, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -218900,17 +160955,12 @@ }, { "id": 11589, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -218919,17 +160969,12 @@ }, { "id": 11590, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -218938,17 +160983,12 @@ }, { "id": 11591, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -218956,17 +160996,12 @@ }, { "id": 11592, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -218974,17 +161009,12 @@ }, { "id": 11593, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -218992,17 +161022,12 @@ }, { "id": 11594, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -219056,109 +161081,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 11598, "states": [ { "id": 11595, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 11596, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 11597, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 11598, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 11599, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 11600, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -219211,109 +161206,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 11604, "states": [ { "id": 11601, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 11602, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 11603, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 11604, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 11605, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 11606, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -219366,109 +161331,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 11610, "states": [ { "id": 11607, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 11608, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 11609, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 11610, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 11611, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 11612, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -219561,17 +161496,12 @@ "states": [ { "id": 11613, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -219610,57 +161540,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 11615, "states": [ { "id": 11614, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BANJO", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 11615, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BANJO", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 11616, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BANJO", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -219703,17 +161618,12 @@ "states": [ { "id": 11617, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -219756,17 +161666,12 @@ "states": [ { "id": 11618, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -219809,17 +161714,12 @@ "states": [ { "id": 11619, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -219862,17 +161762,12 @@ "states": [ { "id": 11620, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -219915,17 +161810,12 @@ "states": [ { "id": 11621, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -219968,17 +161858,12 @@ "states": [ { "id": 11622, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220021,17 +161906,12 @@ "states": [ { "id": 11623, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220074,17 +161954,12 @@ "states": [ { "id": 11624, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220127,17 +162002,12 @@ "states": [ { "id": 11625, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220180,17 +162050,12 @@ "states": [ { "id": 11626, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220233,17 +162098,12 @@ "states": [ { "id": 11627, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220286,17 +162146,12 @@ "states": [ { "id": 11628, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220339,17 +162194,12 @@ "states": [ { "id": 11629, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220392,17 +162242,12 @@ "states": [ { "id": 11630, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220445,17 +162290,12 @@ "states": [ { "id": 11631, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220498,17 +162338,12 @@ "states": [ { "id": 11632, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -220551,17 +162386,12 @@ "states": [ { "id": 11633, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -220604,17 +162434,12 @@ "states": [ { "id": 11634, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -220669,17 +162494,12 @@ "states": [ { "id": 11635, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "CHIME", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -220727,36 +162547,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 11637, "states": [ { "id": 11636, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 11637, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -220802,36 +162612,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 11639, "states": [ { "id": 11638, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 11639, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -220877,36 +162677,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 11641, "states": [ { "id": 11640, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 11641, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -220952,36 +162742,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 11643, "states": [ { "id": 11642, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 11643, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -221131,36 +162911,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 11645, "states": [ { "id": 11644, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11645, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -221310,36 +163080,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 11647, "states": [ { "id": 11646, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 11647, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -221389,247 +163149,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11648, "states": [ { "id": 11648, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11649, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11650, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11651, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11652, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11653, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11654, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11655, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11656, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11657, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11658, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11659, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11660, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11661, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11662, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11663, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -221680,247 +163360,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11664, "states": [ { "id": 11664, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11665, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11666, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11667, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11668, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11669, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11670, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11671, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11672, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11673, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11674, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11675, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11676, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11677, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11678, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11679, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -221971,247 +163571,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11680, "states": [ { "id": 11680, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11681, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11682, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11683, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11684, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11685, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11686, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11687, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11688, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11689, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11690, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11691, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11692, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11693, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11694, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11695, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -222262,247 +163782,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11696, "states": [ { "id": 11696, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11697, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11698, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11699, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11700, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11701, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11702, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11703, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11704, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11705, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11706, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11707, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11708, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11709, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11710, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11711, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -222553,247 +163993,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11712, "states": [ { "id": 11712, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11713, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11714, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11715, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11716, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11717, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11718, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11719, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11720, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11721, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11722, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11723, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11724, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11725, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11726, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11727, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -222844,247 +164204,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11728, "states": [ { "id": 11728, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11729, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11730, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11731, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11732, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11733, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11734, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11735, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11736, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11737, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11738, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11739, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11740, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11741, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11742, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11743, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -223135,247 +164415,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11744, "states": [ { "id": 11744, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11745, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11746, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11747, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11748, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11749, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11750, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11751, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11752, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11753, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11754, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11755, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11756, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11757, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11758, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11759, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -223426,247 +164626,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11760, "states": [ { "id": 11760, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11761, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11762, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11763, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11764, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11765, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11766, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11767, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11768, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11769, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11770, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11771, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11772, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11773, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11774, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11775, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -223717,247 +164837,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11776, "states": [ { "id": 11776, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11777, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11778, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11779, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11780, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11781, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11782, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11783, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11784, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11785, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11786, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11787, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11788, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11789, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11790, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11791, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -224008,247 +165048,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11792, "states": [ { "id": 11792, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11793, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11794, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11795, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11796, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11797, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11798, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11799, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11800, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11801, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11802, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11803, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11804, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11805, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11806, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11807, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -224299,247 +165259,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11808, "states": [ { "id": 11808, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11809, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11810, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11811, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11812, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11813, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11814, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11815, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11816, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11817, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11818, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11819, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11820, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11821, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11822, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11823, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -224590,247 +165470,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11824, "states": [ { "id": 11824, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11825, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11826, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11827, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11828, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11829, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11830, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11831, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11832, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11833, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11834, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11835, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11836, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11837, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11838, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11839, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -224881,247 +165681,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11840, "states": [ { "id": 11840, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11841, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11842, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11843, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11844, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11845, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11846, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11847, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11848, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11849, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11850, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11851, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11852, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11853, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11854, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11855, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -225172,247 +165892,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11856, "states": [ { "id": 11856, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11857, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11858, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11859, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11860, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11861, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11862, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11863, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11864, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11865, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11866, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11867, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11868, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11869, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11870, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11871, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -225463,247 +166103,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11872, "states": [ { "id": 11872, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11873, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11874, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11875, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11876, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11877, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11878, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11879, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11880, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11881, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11882, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11883, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11884, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11885, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11886, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11887, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -225754,247 +166314,167 @@ ] }, "properties": [ - 1078043 + -643770126 ], "default_state_id": 11888, "states": [ { "id": 11888, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11889, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11890, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11891, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11892, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11893, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11894, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11895, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11896, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11897, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11898, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11899, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11900, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11901, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11902, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11903, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226045,67 +166525,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11904, "states": [ { "id": 11904, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11905, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11906, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11907, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226156,67 +166616,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11908, "states": [ { "id": 11908, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11909, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11910, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11911, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226267,67 +166707,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11912, "states": [ { "id": 11912, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11913, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11914, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11915, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226378,67 +166798,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11916, "states": [ { "id": 11916, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11917, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11918, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11919, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226489,67 +166889,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11920, "states": [ { "id": 11920, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11921, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11922, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11923, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226600,67 +166980,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11924, "states": [ { "id": 11924, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11925, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11926, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11927, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226711,67 +167071,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11928, "states": [ { "id": 11928, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11929, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11930, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11931, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226822,67 +167162,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11932, "states": [ { "id": 11932, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11933, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11934, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11935, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -226933,67 +167253,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11936, "states": [ { "id": 11936, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11937, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11938, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11939, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227044,67 +167344,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11940, "states": [ { "id": 11940, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11941, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11942, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11943, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227155,67 +167435,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11944, "states": [ { "id": 11944, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11945, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11946, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11947, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227266,67 +167526,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11948, "states": [ { "id": 11948, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11949, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11950, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11951, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227377,67 +167617,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11952, "states": [ { "id": 11952, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11953, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11954, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11955, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227488,67 +167708,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11956, "states": [ { "id": 11956, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11957, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11958, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11959, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227599,67 +167799,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11960, "states": [ { "id": 11960, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11961, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11962, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11963, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227710,67 +167890,47 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 11964, "states": [ { "id": 11964, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11965, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11966, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 }, { "id": 11967, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 20 } @@ -227812,17 +167972,12 @@ "states": [ { "id": 11968, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -227865,17 +168020,12 @@ "states": [ { "id": 11969, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -227918,17 +168068,12 @@ "states": [ { "id": 11970, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -227967,26 +168112,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 11982, "states": [ { "id": 11971, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -227994,17 +168134,12 @@ }, { "id": 11972, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -228012,17 +168147,12 @@ }, { "id": 11973, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -228031,17 +168161,12 @@ }, { "id": 11974, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -228050,17 +168175,12 @@ }, { "id": 11975, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -228069,17 +168189,12 @@ }, { "id": 11976, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -228088,17 +168203,12 @@ }, { "id": 11977, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -228107,17 +168217,12 @@ }, { "id": 11978, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -228126,17 +168231,12 @@ }, { "id": 11979, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -228145,17 +168245,12 @@ }, { "id": 11980, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -228164,17 +168259,12 @@ }, { "id": 11981, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -228182,17 +168272,12 @@ }, { "id": 11982, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -228200,17 +168285,12 @@ }, { "id": 11983, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -228219,17 +168299,12 @@ }, { "id": 11984, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -228238,17 +168313,12 @@ }, { "id": 11985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -228257,17 +168327,12 @@ }, { "id": 11986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -228276,17 +168341,12 @@ }, { "id": 11987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -228294,17 +168354,12 @@ }, { "id": 11988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -228312,17 +168367,12 @@ }, { "id": 11989, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -228330,17 +168380,12 @@ }, { "id": 11990, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -228348,17 +168393,12 @@ }, { "id": 11991, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -228366,17 +168406,12 @@ }, { "id": 11992, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -228384,17 +168419,12 @@ }, { "id": 11993, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -228403,17 +168433,12 @@ }, { "id": 11994, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -228422,17 +168447,12 @@ }, { "id": 11995, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -228441,17 +168461,12 @@ }, { "id": 11996, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -228460,17 +168475,12 @@ }, { "id": 11997, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -228479,17 +168489,12 @@ }, { "id": 11998, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -228498,17 +168503,12 @@ }, { "id": 11999, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -228517,17 +168517,12 @@ }, { "id": 12000, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -228536,17 +168531,12 @@ }, { "id": 12001, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -228554,17 +168544,12 @@ }, { "id": 12002, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -228572,17 +168557,12 @@ }, { "id": 12003, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -228591,17 +168571,12 @@ }, { "id": 12004, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -228610,17 +168585,12 @@ }, { "id": 12005, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -228629,17 +168599,12 @@ }, { "id": 12006, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -228648,17 +168613,12 @@ }, { "id": 12007, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -228666,17 +168626,12 @@ }, { "id": 12008, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -228684,17 +168639,12 @@ }, { "id": 12009, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -228702,17 +168652,12 @@ }, { "id": 12010, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -228720,17 +168665,12 @@ }, { "id": 12011, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -228738,17 +168678,12 @@ }, { "id": 12012, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -228756,17 +168691,12 @@ }, { "id": 12013, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -228775,17 +168705,12 @@ }, { "id": 12014, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -228794,17 +168719,12 @@ }, { "id": 12015, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -228813,17 +168733,12 @@ }, { "id": 12016, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -228832,17 +168747,12 @@ }, { "id": 12017, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -228851,17 +168761,12 @@ }, { "id": 12018, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -228870,17 +168775,12 @@ }, { "id": 12019, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -228889,17 +168789,12 @@ }, { "id": 12020, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -228908,17 +168803,12 @@ }, { "id": 12021, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -228926,17 +168816,12 @@ }, { "id": 12022, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -228944,17 +168829,12 @@ }, { "id": 12023, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -228963,17 +168843,12 @@ }, { "id": 12024, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -228982,17 +168857,12 @@ }, { "id": 12025, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -229001,17 +168871,12 @@ }, { "id": 12026, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -229020,17 +168885,12 @@ }, { "id": 12027, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -229038,17 +168898,12 @@ }, { "id": 12028, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -229056,17 +168911,12 @@ }, { "id": 12029, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -229074,17 +168924,12 @@ }, { "id": 12030, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -229092,17 +168937,12 @@ }, { "id": 12031, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -229110,17 +168950,12 @@ }, { "id": 12032, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -229128,17 +168963,12 @@ }, { "id": 12033, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -229147,17 +168977,12 @@ }, { "id": 12034, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -229166,17 +168991,12 @@ }, { "id": 12035, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -229185,17 +169005,12 @@ }, { "id": 12036, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -229204,17 +169019,12 @@ }, { "id": 12037, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -229223,17 +169033,12 @@ }, { "id": 12038, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -229242,17 +169047,12 @@ }, { "id": 12039, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -229261,17 +169061,12 @@ }, { "id": 12040, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -229280,17 +169075,12 @@ }, { "id": 12041, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -229298,17 +169088,12 @@ }, { "id": 12042, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -229316,17 +169101,12 @@ }, { "id": 12043, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -229335,17 +169115,12 @@ }, { "id": 12044, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -229354,17 +169129,12 @@ }, { "id": 12045, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -229373,17 +169143,12 @@ }, { "id": 12046, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -229392,17 +169157,12 @@ }, { "id": 12047, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -229410,17 +169170,12 @@ }, { "id": 12048, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -229428,17 +169183,12 @@ }, { "id": 12049, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -229446,17 +169196,12 @@ }, { "id": 12050, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -229510,109 +169255,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12054, "states": [ { "id": 12051, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12052, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12053, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12054, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12055, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12056, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -229665,109 +169380,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12060, "states": [ { "id": 12057, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12058, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12059, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12060, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12061, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12062, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -229820,109 +169505,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12066, "states": [ { "id": 12063, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12064, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12065, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12066, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12067, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12068, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -229975,109 +169630,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12072, "states": [ { "id": 12069, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12070, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12071, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12072, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12073, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12074, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -230130,109 +169755,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12078, "states": [ { "id": 12075, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12076, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12077, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12078, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12079, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12080, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -230285,109 +169880,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12084, "states": [ { "id": 12081, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12082, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12083, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12084, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12085, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12086, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -230440,109 +170005,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12090, "states": [ { "id": 12087, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12088, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12089, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12090, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12091, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12092, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -230595,109 +170130,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12096, "states": [ { "id": 12093, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12094, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12095, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12096, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12097, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12098, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -230750,109 +170255,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12102, "states": [ { "id": 12099, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12100, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12101, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12102, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12103, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12104, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -230905,109 +170380,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12108, "states": [ { "id": 12105, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12106, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12107, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12108, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12109, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12110, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231060,109 +170505,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12114, "states": [ { "id": 12111, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12112, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12113, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12114, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12115, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12116, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231215,109 +170630,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12120, "states": [ { "id": 12117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12121, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12122, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231370,109 +170755,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12126, "states": [ { "id": 12123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12127, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12128, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231525,109 +170880,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12132, "states": [ { "id": 12129, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12130, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12131, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12132, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12133, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12134, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231680,109 +171005,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12138, "states": [ { "id": 12135, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12136, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12137, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12138, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12139, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12140, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231835,109 +171130,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12144, "states": [ { "id": 12141, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12142, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12143, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12144, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12145, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12146, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -231990,109 +171255,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12150, "states": [ { "id": 12147, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12148, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12149, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12150, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12151, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12152, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -232145,109 +171380,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12156, "states": [ { "id": 12153, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12154, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12155, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12156, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12157, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12158, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -232300,109 +171505,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12162, "states": [ { "id": 12159, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12160, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12161, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12162, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12163, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12164, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -232455,109 +171630,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12168, "states": [ { "id": 12165, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12166, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12167, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12168, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12169, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12170, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -232610,109 +171755,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12174, "states": [ { "id": 12171, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12172, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12173, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12174, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12175, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12176, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -232765,109 +171880,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12180, "states": [ { "id": 12177, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12178, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12179, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12180, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12181, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12182, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -232920,109 +172005,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12186, "states": [ { "id": 12183, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12184, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12185, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12186, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12187, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12188, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233075,109 +172130,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12192, "states": [ { "id": 12189, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12190, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12191, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12192, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12193, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12194, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233230,109 +172255,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 12198, "states": [ { "id": 12195, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12196, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 12197, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12198, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 12199, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 12200, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233375,17 +172370,12 @@ "states": [ { "id": 12201, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233428,17 +172418,12 @@ "states": [ { "id": 12202, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233481,17 +172466,12 @@ "states": [ { "id": 12203, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233534,17 +172514,12 @@ "states": [ { "id": 12204, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -233583,521 +172558,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12212, "states": [ { "id": 12205, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12206, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12207, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12208, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12209, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12210, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12211, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12212, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12213, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12214, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12215, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12216, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12217, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12218, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12219, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12220, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12221, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12222, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12223, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12224, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12225, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12226, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12227, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12228, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12229, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12230, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12231, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12232, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12233, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12234, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12235, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12236, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -234136,521 +172951,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12244, "states": [ { "id": 12237, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12238, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12239, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12240, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12241, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12242, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12243, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12244, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12245, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12246, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12247, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12248, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12249, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12250, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12251, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12252, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12253, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12254, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12255, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12256, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12257, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12258, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12259, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12260, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12261, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12262, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12263, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12264, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12265, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12266, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12267, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12268, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -234689,521 +173344,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12276, "states": [ { "id": 12269, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12270, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12271, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12272, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12273, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12274, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12275, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12276, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12277, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12278, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12279, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12280, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12281, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12282, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12283, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12284, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12285, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12286, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12287, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12288, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12289, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12290, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12291, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12292, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12293, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12294, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12295, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12296, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12297, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12298, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12299, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12300, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -235242,521 +173737,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12308, "states": [ { "id": 12301, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12302, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12303, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12304, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12305, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12306, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12307, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12308, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12309, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12310, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12311, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12312, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12313, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12314, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12315, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12316, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12317, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12318, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12319, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12320, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12321, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12322, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12323, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12324, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12325, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12326, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12327, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12328, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12329, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12330, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12331, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12332, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -235795,521 +174130,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12340, "states": [ { "id": 12333, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12334, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12335, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12336, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12337, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12338, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12339, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12340, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12341, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12342, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12343, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12344, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12345, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12346, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12347, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12348, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12349, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12350, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12351, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12352, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12353, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12354, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12355, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12356, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12357, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12358, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12359, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12360, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12361, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12362, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12363, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12364, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -236348,521 +174523,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12372, "states": [ { "id": 12365, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12366, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12367, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12368, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12369, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12370, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12371, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12372, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12373, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12374, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12375, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12376, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12377, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12378, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12379, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12380, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12381, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12382, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12383, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12384, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12385, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12386, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12387, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12388, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12389, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12390, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12391, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12392, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12393, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12394, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12395, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12396, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -236901,521 +174916,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12404, "states": [ { "id": 12397, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12398, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12399, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12400, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12401, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12402, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12403, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12404, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12405, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12406, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12407, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12408, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12409, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12410, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12411, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12412, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12413, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12414, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12415, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12416, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12417, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12418, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12419, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12420, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12421, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12422, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12423, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12424, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12425, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12426, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12427, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12428, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -237454,521 +175309,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12436, "states": [ { "id": 12429, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12430, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12431, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12432, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12433, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12434, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12435, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12436, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12437, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12438, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12439, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12440, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12441, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12442, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12443, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12444, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12445, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12446, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12447, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12448, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12449, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12450, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12451, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12452, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12453, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12454, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12455, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12456, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12457, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12458, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12459, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12460, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -238007,521 +175702,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 12468, "states": [ { "id": 12461, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12462, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12463, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12464, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12465, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12466, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12467, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12468, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12469, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12470, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12471, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12472, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12473, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12474, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12475, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12476, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12477, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12478, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12479, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12480, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12481, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12482, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12483, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12484, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12485, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12486, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12487, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12488, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12489, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12490, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 12491, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12492, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -238560,27 +176095,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12524, "states": [ { "id": 12493, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -238589,17 +176119,12 @@ }, { "id": 12494, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -238607,17 +176132,12 @@ }, { "id": 12495, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -238626,17 +176146,12 @@ }, { "id": 12496, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -238644,17 +176159,12 @@ }, { "id": 12497, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -238662,17 +176172,12 @@ }, { "id": 12498, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -238680,17 +176185,12 @@ }, { "id": 12499, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -238698,17 +176198,12 @@ }, { "id": 12500, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -238716,17 +176211,12 @@ }, { "id": 12501, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -238734,17 +176224,12 @@ }, { "id": 12502, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -238752,17 +176237,12 @@ }, { "id": 12503, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -238770,17 +176250,12 @@ }, { "id": 12504, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -238788,85 +176263,60 @@ }, { "id": 12505, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12506, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12507, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12508, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12509, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -238875,34 +176325,24 @@ }, { "id": 12510, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12511, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -238911,34 +176351,24 @@ }, { "id": 12512, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12513, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -238946,34 +176376,24 @@ }, { "id": 12514, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12515, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -238981,34 +176401,24 @@ }, { "id": 12516, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12517, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -239016,34 +176426,24 @@ }, { "id": 12518, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12519, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -239051,85 +176451,60 @@ }, { "id": 12520, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12521, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12522, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12523, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12524, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -239168,27 +176543,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12556, "states": [ { "id": 12525, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -239197,17 +176567,12 @@ }, { "id": 12526, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -239215,17 +176580,12 @@ }, { "id": 12527, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -239234,17 +176594,12 @@ }, { "id": 12528, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -239252,17 +176607,12 @@ }, { "id": 12529, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -239270,17 +176620,12 @@ }, { "id": 12530, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -239288,17 +176633,12 @@ }, { "id": 12531, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -239306,17 +176646,12 @@ }, { "id": 12532, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -239324,17 +176659,12 @@ }, { "id": 12533, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -239342,17 +176672,12 @@ }, { "id": 12534, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -239360,17 +176685,12 @@ }, { "id": 12535, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -239378,17 +176698,12 @@ }, { "id": 12536, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -239396,85 +176711,60 @@ }, { "id": 12537, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12538, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12539, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12540, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12541, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -239483,34 +176773,24 @@ }, { "id": 12542, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12543, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -239519,34 +176799,24 @@ }, { "id": 12544, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12545, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -239554,34 +176824,24 @@ }, { "id": 12546, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12547, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -239589,34 +176849,24 @@ }, { "id": 12548, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12549, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -239624,34 +176874,24 @@ }, { "id": 12550, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12551, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -239659,85 +176899,60 @@ }, { "id": 12552, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12553, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12554, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12555, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12556, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -239776,27 +176991,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12588, "states": [ { "id": 12557, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -239805,17 +177015,12 @@ }, { "id": 12558, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -239823,17 +177028,12 @@ }, { "id": 12559, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -239842,17 +177042,12 @@ }, { "id": 12560, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -239860,17 +177055,12 @@ }, { "id": 12561, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -239878,17 +177068,12 @@ }, { "id": 12562, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -239896,17 +177081,12 @@ }, { "id": 12563, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -239914,17 +177094,12 @@ }, { "id": 12564, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -239932,17 +177107,12 @@ }, { "id": 12565, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -239950,17 +177120,12 @@ }, { "id": 12566, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -239968,17 +177133,12 @@ }, { "id": 12567, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -239986,17 +177146,12 @@ }, { "id": 12568, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -240004,85 +177159,60 @@ }, { "id": 12569, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12570, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12571, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12572, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12573, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -240091,34 +177221,24 @@ }, { "id": 12574, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12575, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -240127,34 +177247,24 @@ }, { "id": 12576, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12577, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -240162,34 +177272,24 @@ }, { "id": 12578, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12579, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -240197,34 +177297,24 @@ }, { "id": 12580, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12581, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -240232,34 +177322,24 @@ }, { "id": 12582, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12583, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -240267,85 +177347,60 @@ }, { "id": 12584, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12585, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12586, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12587, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12588, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -240384,27 +177439,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12620, "states": [ { "id": 12589, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -240413,17 +177463,12 @@ }, { "id": 12590, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -240431,17 +177476,12 @@ }, { "id": 12591, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -240450,17 +177490,12 @@ }, { "id": 12592, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -240468,17 +177503,12 @@ }, { "id": 12593, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -240486,17 +177516,12 @@ }, { "id": 12594, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -240504,17 +177529,12 @@ }, { "id": 12595, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -240522,17 +177542,12 @@ }, { "id": 12596, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -240540,17 +177555,12 @@ }, { "id": 12597, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -240558,17 +177568,12 @@ }, { "id": 12598, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -240576,17 +177581,12 @@ }, { "id": 12599, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -240594,17 +177594,12 @@ }, { "id": 12600, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -240612,85 +177607,60 @@ }, { "id": 12601, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12602, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12603, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12604, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12605, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -240699,34 +177669,24 @@ }, { "id": 12606, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12607, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -240735,34 +177695,24 @@ }, { "id": 12608, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12609, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -240770,34 +177720,24 @@ }, { "id": 12610, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12611, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -240805,34 +177745,24 @@ }, { "id": 12612, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12613, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -240840,34 +177770,24 @@ }, { "id": 12614, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12615, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -240875,85 +177795,60 @@ }, { "id": 12616, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12617, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12618, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12619, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12620, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -240992,27 +177887,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12652, "states": [ { "id": 12621, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -241021,17 +177911,12 @@ }, { "id": 12622, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -241039,17 +177924,12 @@ }, { "id": 12623, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -241058,17 +177938,12 @@ }, { "id": 12624, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -241076,17 +177951,12 @@ }, { "id": 12625, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -241094,17 +177964,12 @@ }, { "id": 12626, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -241112,17 +177977,12 @@ }, { "id": 12627, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -241130,17 +177990,12 @@ }, { "id": 12628, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -241148,17 +178003,12 @@ }, { "id": 12629, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -241166,17 +178016,12 @@ }, { "id": 12630, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -241184,17 +178029,12 @@ }, { "id": 12631, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -241202,17 +178042,12 @@ }, { "id": 12632, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -241220,85 +178055,60 @@ }, { "id": 12633, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12634, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12635, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12636, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12637, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -241307,34 +178117,24 @@ }, { "id": 12638, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12639, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -241343,34 +178143,24 @@ }, { "id": 12640, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12641, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -241378,34 +178168,24 @@ }, { "id": 12642, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12643, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -241413,34 +178193,24 @@ }, { "id": 12644, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12645, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -241448,34 +178218,24 @@ }, { "id": 12646, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12647, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -241483,85 +178243,60 @@ }, { "id": 12648, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12649, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12650, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12651, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12652, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -241600,27 +178335,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12684, "states": [ { "id": 12653, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -241629,17 +178359,12 @@ }, { "id": 12654, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -241647,17 +178372,12 @@ }, { "id": 12655, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -241666,17 +178386,12 @@ }, { "id": 12656, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -241684,17 +178399,12 @@ }, { "id": 12657, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -241702,17 +178412,12 @@ }, { "id": 12658, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -241720,17 +178425,12 @@ }, { "id": 12659, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -241738,17 +178438,12 @@ }, { "id": 12660, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -241756,17 +178451,12 @@ }, { "id": 12661, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -241774,17 +178464,12 @@ }, { "id": 12662, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -241792,17 +178477,12 @@ }, { "id": 12663, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -241810,17 +178490,12 @@ }, { "id": 12664, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -241828,85 +178503,60 @@ }, { "id": 12665, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12666, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12667, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12668, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12669, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -241915,34 +178565,24 @@ }, { "id": 12670, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12671, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -241951,34 +178591,24 @@ }, { "id": 12672, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12673, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -241986,34 +178616,24 @@ }, { "id": 12674, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12675, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -242021,34 +178641,24 @@ }, { "id": 12676, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12677, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -242056,34 +178666,24 @@ }, { "id": 12678, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12679, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -242091,85 +178691,60 @@ }, { "id": 12680, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12681, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12682, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12683, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12684, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -242208,27 +178783,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12716, "states": [ { "id": 12685, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -242237,17 +178807,12 @@ }, { "id": 12686, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -242255,17 +178820,12 @@ }, { "id": 12687, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -242274,17 +178834,12 @@ }, { "id": 12688, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -242292,17 +178847,12 @@ }, { "id": 12689, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -242310,17 +178860,12 @@ }, { "id": 12690, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -242328,17 +178873,12 @@ }, { "id": 12691, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -242346,17 +178886,12 @@ }, { "id": 12692, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -242364,17 +178899,12 @@ }, { "id": 12693, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -242382,17 +178912,12 @@ }, { "id": 12694, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -242400,17 +178925,12 @@ }, { "id": 12695, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -242418,17 +178938,12 @@ }, { "id": 12696, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -242436,85 +178951,60 @@ }, { "id": 12697, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12698, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12699, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12700, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12701, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -242523,34 +179013,24 @@ }, { "id": 12702, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12703, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -242559,34 +179039,24 @@ }, { "id": 12704, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12705, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -242594,34 +179064,24 @@ }, { "id": 12706, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12707, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -242629,34 +179089,24 @@ }, { "id": 12708, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12709, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -242664,34 +179114,24 @@ }, { "id": 12710, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12711, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -242699,85 +179139,60 @@ }, { "id": 12712, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12713, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12714, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12715, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12716, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -242816,27 +179231,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12748, "states": [ { "id": 12717, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -242845,17 +179255,12 @@ }, { "id": 12718, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -242863,17 +179268,12 @@ }, { "id": 12719, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -242882,17 +179282,12 @@ }, { "id": 12720, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -242900,17 +179295,12 @@ }, { "id": 12721, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -242918,17 +179308,12 @@ }, { "id": 12722, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -242936,17 +179321,12 @@ }, { "id": 12723, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -242954,17 +179334,12 @@ }, { "id": 12724, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -242972,17 +179347,12 @@ }, { "id": 12725, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -242990,17 +179360,12 @@ }, { "id": 12726, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -243008,17 +179373,12 @@ }, { "id": 12727, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -243026,17 +179386,12 @@ }, { "id": 12728, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -243044,85 +179399,60 @@ }, { "id": 12729, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12730, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12731, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12732, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12733, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -243131,34 +179461,24 @@ }, { "id": 12734, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12735, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -243167,34 +179487,24 @@ }, { "id": 12736, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12737, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -243202,34 +179512,24 @@ }, { "id": 12738, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12739, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -243237,34 +179537,24 @@ }, { "id": 12740, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12741, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -243272,34 +179562,24 @@ }, { "id": 12742, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12743, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -243307,85 +179587,60 @@ }, { "id": 12744, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12745, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12746, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12747, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12748, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -243424,27 +179679,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 12780, "states": [ { "id": 12749, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -243453,17 +179703,12 @@ }, { "id": 12750, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -243471,17 +179716,12 @@ }, { "id": 12751, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -243490,17 +179730,12 @@ }, { "id": 12752, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -243508,17 +179743,12 @@ }, { "id": 12753, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -243526,17 +179756,12 @@ }, { "id": 12754, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -243544,17 +179769,12 @@ }, { "id": 12755, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -243562,17 +179782,12 @@ }, { "id": 12756, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -243580,17 +179795,12 @@ }, { "id": 12757, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -243598,17 +179808,12 @@ }, { "id": 12758, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -243616,17 +179821,12 @@ }, { "id": 12759, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -243634,17 +179834,12 @@ }, { "id": 12760, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -243652,85 +179847,60 @@ }, { "id": 12761, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12762, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12763, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 12764, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 12765, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -243739,34 +179909,24 @@ }, { "id": 12766, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12767, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -243775,34 +179935,24 @@ }, { "id": 12768, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 12769, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -243810,34 +179960,24 @@ }, { "id": 12770, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12771, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -243845,34 +179985,24 @@ }, { "id": 12772, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 12773, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -243880,34 +180010,24 @@ }, { "id": 12774, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12775, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -243915,85 +180035,60 @@ }, { "id": 12776, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 12777, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12778, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 12779, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 12780, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -244041,1034 +180136,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 12792, "states": [ { "id": 12781, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12782, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12783, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12784, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12785, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12786, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12787, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12788, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12789, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12790, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12791, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12792, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12793, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12794, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12795, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12796, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12797, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12798, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12799, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12800, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12801, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12802, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12803, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12804, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12805, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12806, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12807, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12808, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12809, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12810, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12811, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12812, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12813, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12814, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12815, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12816, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12817, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12818, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12819, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12820, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12821, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12822, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12823, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12824, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12825, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12826, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12827, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12828, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12829, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12830, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12831, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12832, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12833, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12834, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12835, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12836, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12837, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12838, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12839, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12840, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12841, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12842, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12843, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12844, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -245116,1034 +180891,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 12856, "states": [ { "id": 12845, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12846, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12847, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12848, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12849, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12850, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12851, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12852, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12853, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12854, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12855, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12856, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12857, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12858, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12859, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12860, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12861, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12862, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12863, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12864, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12865, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12866, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12867, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12868, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12869, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12870, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12871, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12872, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12873, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12874, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12875, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12876, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12877, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12878, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12879, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12880, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12881, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12882, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12883, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12884, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12885, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12886, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12887, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12888, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12889, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12890, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12891, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12892, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12893, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12894, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12895, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12896, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12897, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12898, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12899, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12900, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12901, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12902, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12903, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12904, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12905, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12906, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12907, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12908, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -246191,1034 +181646,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 12920, "states": [ { "id": 12909, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12910, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12911, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12912, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12913, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12914, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12915, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12916, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12917, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12918, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12919, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12920, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12921, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12922, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12923, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12924, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12925, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12926, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12927, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12928, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12929, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12930, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12931, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12932, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12933, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12934, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12935, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12936, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12937, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12938, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12939, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12940, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12941, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12942, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12943, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12944, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12945, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12946, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12947, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12948, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12949, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12950, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12951, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12952, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12953, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12954, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12955, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12956, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12957, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12958, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12959, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12960, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12961, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12962, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12963, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12964, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12965, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12966, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12967, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12968, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12969, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12970, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12971, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12972, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -247266,1034 +182401,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 12984, "states": [ { "id": 12973, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12974, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12975, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12976, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12977, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12978, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12979, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12980, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12981, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12982, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12983, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12984, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12985, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12986, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12987, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12988, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 12989, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12990, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12991, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12992, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12993, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12994, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 12995, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12996, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 12997, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12998, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 12999, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13000, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13001, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13002, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13003, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13004, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13005, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13006, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13007, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13008, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13009, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13010, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13011, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13012, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13013, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13014, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13015, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13016, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13017, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13018, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13019, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13020, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13021, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13022, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13023, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13024, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13025, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13026, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13027, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13028, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13029, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13030, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13031, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13032, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13033, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13034, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13035, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13036, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -248341,1034 +183156,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 13048, "states": [ { "id": 13037, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13038, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13039, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13040, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13041, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13042, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13043, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13044, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13045, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13046, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13047, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13048, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13049, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13050, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13051, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13052, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13053, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13054, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13055, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13056, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13057, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13058, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13059, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13060, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13061, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13062, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13063, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13064, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13065, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13066, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13067, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13068, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13069, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13070, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13071, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13072, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13073, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13074, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13075, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13076, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13077, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13078, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13079, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13080, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13081, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13082, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13083, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13084, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13085, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13086, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13087, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13088, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13089, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13090, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13091, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13092, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13093, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13094, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13095, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13096, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13097, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13098, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13099, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13100, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -249416,1034 +183911,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 13112, "states": [ { "id": 13101, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13102, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13103, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13104, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13105, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13106, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13107, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13108, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13109, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13110, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13111, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13112, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13113, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13114, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13115, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13116, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13117, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13118, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13119, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13120, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13121, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13122, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13123, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13124, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13125, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13126, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13127, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13128, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13129, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13130, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13131, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13132, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13133, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13134, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13135, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13136, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13137, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13138, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13139, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13140, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13141, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13142, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13143, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13144, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13145, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13146, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13147, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13148, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13149, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13150, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13151, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13152, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13153, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13154, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13155, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13156, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13157, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13158, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13159, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13160, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13161, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13162, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13163, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13164, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -250491,1034 +184666,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 13176, "states": [ { "id": 13165, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13166, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13167, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13168, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13169, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13170, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13171, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13172, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13173, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13174, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13175, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13176, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13177, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13178, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13179, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13180, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13181, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13182, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13183, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13184, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13185, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13186, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13187, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13188, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13189, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13190, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13191, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13192, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13193, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13194, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13195, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13196, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13197, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13198, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13199, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13200, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13201, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13202, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13203, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13204, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13205, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13206, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13207, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13208, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13209, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13210, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13211, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13212, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13213, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13214, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13215, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13216, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13217, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13218, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13219, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13220, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13221, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13222, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13223, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13224, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13225, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13226, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13227, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13228, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -251566,1034 +185421,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 13240, "states": [ { "id": 13229, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13230, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13231, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13232, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13233, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13234, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13235, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13236, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13237, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13238, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13239, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13240, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13241, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13242, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13243, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13244, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13245, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13246, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13247, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13248, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13249, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13250, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13251, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13252, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13253, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13254, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13255, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13256, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13257, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13258, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13259, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13260, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13261, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13262, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13263, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13264, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13265, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13266, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13267, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13268, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13269, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13270, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13271, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13272, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13273, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13274, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13275, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13276, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13277, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13278, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13279, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13280, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13281, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13282, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13283, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13284, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13285, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13286, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13287, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13288, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13289, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13290, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13291, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13292, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -252641,1034 +186176,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 13304, "states": [ { "id": 13293, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13294, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13295, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13296, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13297, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13298, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13299, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13300, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13301, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13302, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13303, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13304, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13305, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13306, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13307, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13308, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13309, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13310, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13311, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13312, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13313, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13314, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13315, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13316, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13317, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13318, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13319, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13320, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13321, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13322, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13323, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13324, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13325, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13326, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13327, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13328, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13329, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13330, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13331, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13332, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13333, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13334, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13335, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13336, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13337, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13338, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13339, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13340, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 13341, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13342, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13343, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13344, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13345, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13346, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13347, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13348, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13349, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13350, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 13351, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13352, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13353, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13354, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 13355, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 13356, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -253707,102 +186922,72 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13361, "states": [ { "id": 13357, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 13358, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 13359, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 13360, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 13361, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 13362, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] @@ -253850,27 +187035,22 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + -49058339 ], "default_state_id": 13426, "states": [ { "id": 13363, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -253881,16 +187061,11 @@ }, { "id": 13364, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 207, @@ -253900,16 +187075,11 @@ }, { "id": 13365, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -253920,16 +187090,11 @@ }, { "id": 13366, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 207, @@ -253939,16 +187104,11 @@ }, { "id": 13367, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -253958,16 +187118,11 @@ }, { "id": 13368, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 207, @@ -253976,16 +187131,11 @@ }, { "id": 13369, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -253995,16 +187145,11 @@ }, { "id": 13370, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 207, @@ -254013,16 +187158,11 @@ }, { "id": 13371, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -254032,16 +187172,11 @@ }, { "id": 13372, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 208, @@ -254050,16 +187185,11 @@ }, { "id": 13373, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -254069,16 +187199,11 @@ }, { "id": 13374, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 208, @@ -254087,16 +187212,11 @@ }, { "id": 13375, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -254105,16 +187225,11 @@ }, { "id": 13376, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 209 @@ -254122,16 +187237,11 @@ }, { "id": 13377, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -254140,16 +187250,11 @@ }, { "id": 13378, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 209 @@ -254157,16 +187262,11 @@ }, { "id": 13379, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -254176,16 +187276,11 @@ }, { "id": 13380, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 207, @@ -254194,16 +187289,11 @@ }, { "id": 13381, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -254213,16 +187303,11 @@ }, { "id": 13382, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 207, @@ -254231,16 +187316,11 @@ }, { "id": 13383, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -254249,16 +187329,11 @@ }, { "id": 13384, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 207 @@ -254266,16 +187341,11 @@ }, { "id": 13385, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -254284,16 +187354,11 @@ }, { "id": 13386, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 207 @@ -254301,16 +187366,11 @@ }, { "id": 13387, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206, @@ -254319,16 +187379,11 @@ }, { "id": 13388, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 208 @@ -254336,16 +187391,11 @@ }, { "id": 13389, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206, @@ -254354,16 +187404,11 @@ }, { "id": 13390, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 208 @@ -254371,16 +187416,11 @@ }, { "id": 13391, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205, 206 @@ -254388,32 +187428,22 @@ }, { "id": 13392, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 205 ] }, { "id": 13393, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210, 206 @@ -254421,32 +187451,22 @@ }, { "id": 13394, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 210 ] }, { "id": 13395, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 207, @@ -254456,16 +187476,11 @@ }, { "id": 13396, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 213, 209, @@ -254474,16 +187489,11 @@ }, { "id": 13397, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 207, @@ -254492,16 +187502,11 @@ }, { "id": 13398, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 213, 209 @@ -254509,16 +187514,11 @@ }, { "id": 13399, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 207, @@ -254527,16 +187527,11 @@ }, { "id": 13400, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 214, 209, @@ -254545,16 +187540,11 @@ }, { "id": 13401, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 207 @@ -254562,16 +187552,11 @@ }, { "id": 13402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 214, 209 @@ -254579,16 +187564,11 @@ }, { "id": 13403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 208, @@ -254597,16 +187577,11 @@ }, { "id": 13404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 215, 209, @@ -254615,16 +187590,11 @@ }, { "id": 13405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 208 @@ -254632,16 +187602,11 @@ }, { "id": 13406, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 215, 209 @@ -254649,16 +187614,11 @@ }, { "id": 13407, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211, 212 @@ -254666,16 +187626,11 @@ }, { "id": 13408, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 216, 212 @@ -254683,48 +187638,33 @@ }, { "id": 13409, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 211 ] }, { "id": 13410, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 216 ] }, { "id": 13411, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 207, @@ -254734,16 +187674,11 @@ }, { "id": 13412, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 213, 212 @@ -254751,16 +187686,11 @@ }, { "id": 13413, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 207, @@ -254769,32 +187699,22 @@ }, { "id": 13414, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 213 ] }, { "id": 13415, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 207, @@ -254803,16 +187723,11 @@ }, { "id": 13416, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 214, 212 @@ -254820,16 +187735,11 @@ }, { "id": 13417, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 207 @@ -254837,32 +187747,22 @@ }, { "id": 13418, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 214 ] }, { "id": 13419, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 208, @@ -254871,16 +187771,11 @@ }, { "id": 13420, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 215, 212 @@ -254888,16 +187783,11 @@ }, { "id": 13421, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 208 @@ -254905,32 +187795,22 @@ }, { "id": 13422, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 215 ] }, { "id": 13423, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217, 212 @@ -254938,48 +187818,33 @@ }, { "id": 13424, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 218 ] }, { "id": 13425, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 217 ] }, { "id": 13426, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 219 ] @@ -255023,102 +187888,72 @@ ] }, "properties": [ - 1245197045 + 600348876 ], "default_state_id": 13427, "states": [ { "id": 13427, - "air": false, - "is_solid": false, + "state_flags": 128, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13428, - "air": false, - "is_solid": false, + "state_flags": 128, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13429, - "air": false, - "is_solid": false, + "state_flags": 128, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13430, - "air": false, - "is_solid": false, + "state_flags": 128, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13431, - "air": false, - "is_solid": false, + "state_flags": 128, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13432, - "air": false, - "is_solid": false, + "state_flags": 128, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.4, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -255161,17 +187996,12 @@ "states": [ { "id": 13433, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -255210,57 +188040,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 13435, "states": [ { "id": 13434, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13435, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13436, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -255299,26 +188114,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 13448, "states": [ { "id": 13437, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -255326,17 +188136,12 @@ }, { "id": 13438, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -255344,17 +188149,12 @@ }, { "id": 13439, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -255363,17 +188163,12 @@ }, { "id": 13440, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -255382,17 +188177,12 @@ }, { "id": 13441, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -255401,17 +188191,12 @@ }, { "id": 13442, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -255420,17 +188205,12 @@ }, { "id": 13443, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -255439,17 +188219,12 @@ }, { "id": 13444, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -255458,17 +188233,12 @@ }, { "id": 13445, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -255477,17 +188247,12 @@ }, { "id": 13446, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -255496,17 +188261,12 @@ }, { "id": 13447, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -255514,17 +188274,12 @@ }, { "id": 13448, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -255532,17 +188287,12 @@ }, { "id": 13449, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -255551,17 +188301,12 @@ }, { "id": 13450, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -255570,17 +188315,12 @@ }, { "id": 13451, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -255589,17 +188329,12 @@ }, { "id": 13452, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -255608,17 +188343,12 @@ }, { "id": 13453, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -255626,17 +188356,12 @@ }, { "id": 13454, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -255644,17 +188369,12 @@ }, { "id": 13455, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -255662,17 +188382,12 @@ }, { "id": 13456, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -255680,17 +188395,12 @@ }, { "id": 13457, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -255698,17 +188408,12 @@ }, { "id": 13458, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -255716,17 +188421,12 @@ }, { "id": 13459, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -255735,17 +188435,12 @@ }, { "id": 13460, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -255754,17 +188449,12 @@ }, { "id": 13461, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -255773,17 +188463,12 @@ }, { "id": 13462, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -255792,17 +188477,12 @@ }, { "id": 13463, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -255811,17 +188491,12 @@ }, { "id": 13464, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -255830,17 +188505,12 @@ }, { "id": 13465, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -255849,17 +188519,12 @@ }, { "id": 13466, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -255868,17 +188533,12 @@ }, { "id": 13467, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -255886,17 +188546,12 @@ }, { "id": 13468, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -255904,17 +188559,12 @@ }, { "id": 13469, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -255923,17 +188573,12 @@ }, { "id": 13470, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -255942,17 +188587,12 @@ }, { "id": 13471, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -255961,17 +188601,12 @@ }, { "id": 13472, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -255980,17 +188615,12 @@ }, { "id": 13473, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -255998,17 +188628,12 @@ }, { "id": 13474, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -256016,17 +188641,12 @@ }, { "id": 13475, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -256034,17 +188654,12 @@ }, { "id": 13476, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -256052,17 +188667,12 @@ }, { "id": 13477, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -256070,17 +188680,12 @@ }, { "id": 13478, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -256088,17 +188693,12 @@ }, { "id": 13479, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -256107,17 +188707,12 @@ }, { "id": 13480, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -256126,17 +188721,12 @@ }, { "id": 13481, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -256145,17 +188735,12 @@ }, { "id": 13482, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -256164,17 +188749,12 @@ }, { "id": 13483, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -256183,17 +188763,12 @@ }, { "id": 13484, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -256202,17 +188777,12 @@ }, { "id": 13485, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -256221,17 +188791,12 @@ }, { "id": 13486, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -256240,17 +188805,12 @@ }, { "id": 13487, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -256258,17 +188818,12 @@ }, { "id": 13488, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -256276,17 +188831,12 @@ }, { "id": 13489, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -256295,17 +188845,12 @@ }, { "id": 13490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -256314,17 +188859,12 @@ }, { "id": 13491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -256333,17 +188873,12 @@ }, { "id": 13492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -256352,17 +188887,12 @@ }, { "id": 13493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -256370,17 +188900,12 @@ }, { "id": 13494, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -256388,17 +188913,12 @@ }, { "id": 13495, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -256406,17 +188926,12 @@ }, { "id": 13496, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -256424,17 +188939,12 @@ }, { "id": 13497, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -256442,17 +188952,12 @@ }, { "id": 13498, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -256460,17 +188965,12 @@ }, { "id": 13499, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -256479,17 +188979,12 @@ }, { "id": 13500, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -256498,17 +188993,12 @@ }, { "id": 13501, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -256517,17 +189007,12 @@ }, { "id": 13502, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -256536,17 +189021,12 @@ }, { "id": 13503, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -256555,17 +189035,12 @@ }, { "id": 13504, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -256574,17 +189049,12 @@ }, { "id": 13505, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -256593,17 +189063,12 @@ }, { "id": 13506, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -256612,17 +189077,12 @@ }, { "id": 13507, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -256630,17 +189090,12 @@ }, { "id": 13508, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -256648,17 +189103,12 @@ }, { "id": 13509, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -256667,17 +189117,12 @@ }, { "id": 13510, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -256686,17 +189131,12 @@ }, { "id": 13511, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -256705,17 +189145,12 @@ }, { "id": 13512, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -256724,17 +189159,12 @@ }, { "id": 13513, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -256742,17 +189172,12 @@ }, { "id": 13514, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -256760,17 +189185,12 @@ }, { "id": 13515, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -256778,17 +189198,12 @@ }, { "id": 13516, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -256832,17 +189247,12 @@ "states": [ { "id": 13517, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -256881,36 +189291,26 @@ ] }, "properties": [ - 356708211 + -288139958 ], "default_state_id": 13518, "states": [ { "id": 13518, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13519, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -257083,157 +189483,107 @@ ] }, "properties": [ - 385368210, - -771186830 + -259479959, + 833894292 ], "default_state_id": 13521, "states": [ { "id": 13520, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13521, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 220 ] }, { "id": 13522, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13523, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 221 ] }, { "id": 13524, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13525, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 221 ] }, { "id": 13526, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13527, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 221 ] }, { "id": 13528, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13529, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 221 ] @@ -257281,36 +189631,26 @@ ] }, "properties": [ - -771186830 + 833894292 ], "default_state_id": 13531, "states": [ { "id": 13530, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13531, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -257395,64 +189735,44 @@ ] }, "properties": [ - 357631796 + -287216373 ], "default_state_id": 13532, "states": [ { "id": 13532, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13533, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13534, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13535, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -257493,17 +189813,12 @@ "states": [ { "id": 13536, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.65, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 63 ] @@ -257525,16 +189840,11 @@ "states": [ { "id": 13537, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "BLOCK", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 22 } @@ -257551,24 +189861,19 @@ "blast_resistance": 3600000.0, "item_id": 544, "properties": [ - 962003109, - 1627058566 + 1155426996, + 2060047744 ], "default_state_id": 13544, "states": [ { "id": 13538, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257576,17 +189881,12 @@ }, { "id": 13539, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257594,17 +189894,12 @@ }, { "id": 13540, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257612,17 +189907,12 @@ }, { "id": 13541, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257630,17 +189920,12 @@ }, { "id": 13542, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257648,17 +189933,12 @@ }, { "id": 13543, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257666,17 +189946,12 @@ }, { "id": 13544, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257684,17 +189959,12 @@ }, { "id": 13545, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257702,17 +189972,12 @@ }, { "id": 13546, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257720,17 +189985,12 @@ }, { "id": 13547, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257738,17 +189998,12 @@ }, { "id": 13548, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257756,17 +190011,12 @@ }, { "id": 13549, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257785,24 +190035,19 @@ "blast_resistance": 3600000.0, "item_id": 545, "properties": [ - 962003109, - 1627058566 + 1155426996, + 2060047744 ], "default_state_id": 13556, "states": [ { "id": 13550, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257810,17 +190055,12 @@ }, { "id": 13551, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257828,17 +190068,12 @@ }, { "id": 13552, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257846,17 +190081,12 @@ }, { "id": 13553, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257864,17 +190094,12 @@ }, { "id": 13554, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257882,17 +190107,12 @@ }, { "id": 13555, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257900,17 +190120,12 @@ }, { "id": 13556, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257918,17 +190133,12 @@ }, { "id": 13557, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257936,17 +190146,12 @@ }, { "id": 13558, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257954,17 +190159,12 @@ }, { "id": 13559, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257972,17 +190172,12 @@ }, { "id": 13560, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -257990,17 +190185,12 @@ }, { "id": 13561, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258023,70 +190213,50 @@ "random_sequence": "minecraft:blocks/frosted_ice" }, "properties": [ - 357631796 + -287216373 ], "default_state_id": 13562, "states": [ { "id": 13562, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13563, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13564, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13565, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -258129,17 +190299,12 @@ "states": [ { "id": 13566, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -258182,17 +190347,12 @@ "states": [ { "id": 13567, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -258235,17 +190395,12 @@ "states": [ { "id": 13568, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -258284,57 +190439,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 13570, "states": [ { "id": 13569, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "XYLOPHONE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13570, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "XYLOPHONE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13571, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "XYLOPHONE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -258356,16 +190496,11 @@ "states": [ { "id": 13572, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -258402,211 +190537,151 @@ ] }, "properties": [ - 1627058566, - -634074493 + 2060047744, + -440650606 ], "default_state_id": 13578, "states": [ { "id": 13573, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13574, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13575, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13576, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13577, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13578, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13579, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13580, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13581, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13582, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13583, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13584, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -258652,22 +190727,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13589, "states": [ { "id": 13585, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258675,16 +190745,11 @@ }, { "id": 13586, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258692,16 +190757,11 @@ }, { "id": 13587, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258709,16 +190769,11 @@ }, { "id": 13588, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258726,16 +190781,11 @@ }, { "id": 13589, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258743,16 +190793,11 @@ }, { "id": 13590, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258799,22 +190844,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13595, "states": [ { "id": 13591, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258822,16 +190862,11 @@ }, { "id": 13592, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258839,16 +190874,11 @@ }, { "id": 13593, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258856,16 +190886,11 @@ }, { "id": 13594, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258873,16 +190898,11 @@ }, { "id": 13595, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258890,16 +190910,11 @@ }, { "id": 13596, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258946,22 +190961,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13601, "states": [ { "id": 13597, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258969,16 +190979,11 @@ }, { "id": 13598, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -258986,16 +190991,11 @@ }, { "id": 13599, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259003,16 +191003,11 @@ }, { "id": 13600, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259020,16 +191015,11 @@ }, { "id": 13601, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259037,16 +191027,11 @@ }, { "id": 13602, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259093,22 +191078,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13607, "states": [ { "id": 13603, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259116,16 +191096,11 @@ }, { "id": 13604, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259133,16 +191108,11 @@ }, { "id": 13605, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259150,16 +191120,11 @@ }, { "id": 13606, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259167,16 +191132,11 @@ }, { "id": 13607, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259184,16 +191144,11 @@ }, { "id": 13608, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259240,22 +191195,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13613, "states": [ { "id": 13609, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259263,16 +191213,11 @@ }, { "id": 13610, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259280,16 +191225,11 @@ }, { "id": 13611, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259297,16 +191237,11 @@ }, { "id": 13612, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259314,16 +191249,11 @@ }, { "id": 13613, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259331,16 +191261,11 @@ }, { "id": 13614, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259387,22 +191312,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13619, "states": [ { "id": 13615, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259410,16 +191330,11 @@ }, { "id": 13616, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259427,16 +191342,11 @@ }, { "id": 13617, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259444,16 +191354,11 @@ }, { "id": 13618, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259461,16 +191366,11 @@ }, { "id": 13619, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259478,16 +191378,11 @@ }, { "id": 13620, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259534,22 +191429,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13625, "states": [ { "id": 13621, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259557,16 +191447,11 @@ }, { "id": 13622, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259574,16 +191459,11 @@ }, { "id": 13623, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259591,16 +191471,11 @@ }, { "id": 13624, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259608,16 +191483,11 @@ }, { "id": 13625, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259625,16 +191495,11 @@ }, { "id": 13626, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259681,22 +191546,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13631, "states": [ { "id": 13627, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259704,16 +191564,11 @@ }, { "id": 13628, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259721,16 +191576,11 @@ }, { "id": 13629, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259738,16 +191588,11 @@ }, { "id": 13630, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259755,16 +191600,11 @@ }, { "id": 13631, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259772,16 +191612,11 @@ }, { "id": 13632, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259828,22 +191663,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13637, "states": [ { "id": 13633, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259851,16 +191681,11 @@ }, { "id": 13634, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259868,16 +191693,11 @@ }, { "id": 13635, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259885,16 +191705,11 @@ }, { "id": 13636, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259902,16 +191717,11 @@ }, { "id": 13637, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259919,16 +191729,11 @@ }, { "id": 13638, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259975,22 +191780,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13643, "states": [ { "id": 13639, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -259998,16 +191798,11 @@ }, { "id": 13640, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260015,16 +191810,11 @@ }, { "id": 13641, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260032,16 +191822,11 @@ }, { "id": 13642, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260049,16 +191834,11 @@ }, { "id": 13643, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260066,16 +191846,11 @@ }, { "id": 13644, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260122,22 +191897,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13649, "states": [ { "id": 13645, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260145,16 +191915,11 @@ }, { "id": 13646, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260162,16 +191927,11 @@ }, { "id": 13647, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260179,16 +191939,11 @@ }, { "id": 13648, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260196,16 +191951,11 @@ }, { "id": 13649, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260213,16 +191963,11 @@ }, { "id": 13650, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260269,22 +192014,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13655, "states": [ { "id": 13651, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260292,16 +192032,11 @@ }, { "id": 13652, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260309,16 +192044,11 @@ }, { "id": 13653, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260326,16 +192056,11 @@ }, { "id": 13654, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260343,16 +192068,11 @@ }, { "id": 13655, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260360,16 +192080,11 @@ }, { "id": 13656, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260416,22 +192131,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13661, "states": [ { "id": 13657, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260439,16 +192149,11 @@ }, { "id": 13658, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260456,16 +192161,11 @@ }, { "id": 13659, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260473,16 +192173,11 @@ }, { "id": 13660, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260490,16 +192185,11 @@ }, { "id": 13661, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260507,16 +192197,11 @@ }, { "id": 13662, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260563,22 +192248,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13667, "states": [ { "id": 13663, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260586,16 +192266,11 @@ }, { "id": 13664, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260603,16 +192278,11 @@ }, { "id": 13665, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260620,16 +192290,11 @@ }, { "id": 13666, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260637,16 +192302,11 @@ }, { "id": 13667, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260654,16 +192314,11 @@ }, { "id": 13668, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260710,22 +192365,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13673, "states": [ { "id": 13669, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260733,16 +192383,11 @@ }, { "id": 13670, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260750,16 +192395,11 @@ }, { "id": 13671, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260767,16 +192407,11 @@ }, { "id": 13672, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260784,16 +192419,11 @@ }, { "id": 13673, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260801,16 +192431,11 @@ }, { "id": 13674, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260857,22 +192482,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13679, "states": [ { "id": 13675, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260880,16 +192500,11 @@ }, { "id": 13676, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260897,16 +192512,11 @@ }, { "id": 13677, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260914,16 +192524,11 @@ }, { "id": 13678, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260931,16 +192536,11 @@ }, { "id": 13679, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -260948,16 +192548,11 @@ }, { "id": 13680, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261004,22 +192599,17 @@ ] }, "properties": [ - 1627058566 + 2060047744 ], "default_state_id": 13685, "states": [ { "id": 13681, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261027,16 +192617,11 @@ }, { "id": 13682, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261044,16 +192629,11 @@ }, { "id": 13683, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261061,16 +192641,11 @@ }, { "id": 13684, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261078,16 +192653,11 @@ }, { "id": 13685, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261095,16 +192665,11 @@ }, { "id": 13686, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -261144,74 +192709,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13687, "states": [ { "id": 13687, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13688, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13689, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13690, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261250,74 +192795,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13691, "states": [ { "id": 13691, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13692, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13693, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13694, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261356,74 +192881,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13695, "states": [ { "id": 13695, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13696, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13697, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13698, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261462,74 +192967,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13699, "states": [ { "id": 13699, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13700, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13701, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13702, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261568,74 +193053,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13703, "states": [ { "id": 13703, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13704, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13705, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13706, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261674,74 +193139,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13707, "states": [ { "id": 13707, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13708, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13709, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13710, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261780,74 +193225,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13711, "states": [ { "id": 13711, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13712, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13713, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13714, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261886,74 +193311,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13715, "states": [ { "id": 13715, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13716, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13717, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13718, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -261992,74 +193397,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13719, "states": [ { "id": 13719, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13720, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13721, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13722, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262098,74 +193483,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13723, "states": [ { "id": 13723, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13724, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13725, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13726, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262204,74 +193569,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13727, "states": [ { "id": 13727, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13728, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13729, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13730, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262310,74 +193655,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13731, "states": [ { "id": 13731, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13732, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13733, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13734, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262416,74 +193741,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13735, "states": [ { "id": 13735, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13736, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13737, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13738, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262522,74 +193827,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13739, "states": [ { "id": 13739, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13740, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13741, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13742, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262628,74 +193913,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13743, "states": [ { "id": 13743, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13744, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13745, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13746, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262734,74 +193999,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 13747, "states": [ { "id": 13747, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13748, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13749, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 13750, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "PUSH_ONLY", "hardness": 1.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262844,17 +194089,12 @@ "states": [ { "id": 13751, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262897,17 +194137,12 @@ "states": [ { "id": 13752, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -262950,17 +194185,12 @@ "states": [ { "id": 13753, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263003,17 +194233,12 @@ "states": [ { "id": 13754, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263056,17 +194281,12 @@ "states": [ { "id": 13755, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263109,17 +194329,12 @@ "states": [ { "id": 13756, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263162,17 +194377,12 @@ "states": [ { "id": 13757, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263215,17 +194425,12 @@ "states": [ { "id": 13758, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263268,17 +194473,12 @@ "states": [ { "id": 13759, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263321,17 +194521,12 @@ "states": [ { "id": 13760, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263374,17 +194569,12 @@ "states": [ { "id": 13761, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263427,17 +194617,12 @@ "states": [ { "id": 13762, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263480,17 +194665,12 @@ "states": [ { "id": 13763, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263533,17 +194713,12 @@ "states": [ { "id": 13764, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263586,17 +194761,12 @@ "states": [ { "id": 13765, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263639,17 +194809,12 @@ "states": [ { "id": 13766, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263692,17 +194857,12 @@ "states": [ { "id": 13767, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263745,17 +194905,12 @@ "states": [ { "id": 13768, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263798,17 +194953,12 @@ "states": [ { "id": 13769, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263851,17 +195001,12 @@ "states": [ { "id": 13770, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263904,17 +195049,12 @@ "states": [ { "id": 13771, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -263957,17 +195097,12 @@ "states": [ { "id": 13772, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264010,17 +195145,12 @@ "states": [ { "id": 13773, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264063,17 +195193,12 @@ "states": [ { "id": 13774, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264116,17 +195241,12 @@ "states": [ { "id": 13775, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264169,17 +195289,12 @@ "states": [ { "id": 13776, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264222,17 +195337,12 @@ "states": [ { "id": 13777, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264275,17 +195385,12 @@ "states": [ { "id": 13778, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264328,17 +195433,12 @@ "states": [ { "id": 13779, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264381,17 +195481,12 @@ "states": [ { "id": 13780, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264434,17 +195529,12 @@ "states": [ { "id": 13781, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264487,17 +195577,12 @@ "states": [ { "id": 13782, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -264536,372 +195621,242 @@ ] }, "properties": [ - 169292927 + -475555242 ], "default_state_id": 13783, "states": [ { "id": 13783, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13784, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13785, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13786, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13787, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13788, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13789, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13790, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13791, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13792, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13793, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13794, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13795, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13796, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13797, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13798, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13799, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13800, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13801, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13802, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13803, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13804, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13805, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13806, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13807, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13808, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -264942,16 +195897,11 @@ "states": [ { "id": 13809, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -264992,17 +195942,12 @@ "states": [ { "id": 13810, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265053,199 +195998,139 @@ ] }, "properties": [ - 451117381, - -870654704 + -193730788, + -1515502873 ], "default_state_id": 13811, "states": [ { "id": 13811, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 222 ] }, { "id": 13812, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 222 ] }, { "id": 13813, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 222 ] }, { "id": 13814, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13815, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13816, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13817, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13818, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13819, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13820, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13821, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] }, { "id": 13822, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 223 ] @@ -265284,54 +196169,39 @@ ] }, "properties": [ - -870654704 + -1515502873 ], "default_state_id": 13823, "states": [ { "id": 13823, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 224 ] }, { "id": 13824, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 224 ] }, { "id": 13825, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 224 ] @@ -265374,17 +196244,12 @@ "states": [ { "id": 13826, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265427,17 +196292,12 @@ "states": [ { "id": 13827, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265480,17 +196340,12 @@ "states": [ { "id": 13828, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265533,17 +196388,12 @@ "states": [ { "id": 13829, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265586,17 +196436,12 @@ "states": [ { "id": 13830, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265665,17 +196510,12 @@ "states": [ { "id": 13831, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265744,17 +196584,12 @@ "states": [ { "id": 13832, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265823,17 +196658,12 @@ "states": [ { "id": 13833, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265902,17 +196732,12 @@ "states": [ { "id": 13834, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -265981,17 +196806,12 @@ "states": [ { "id": 13835, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -266042,36 +196862,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13836, "states": [ { "id": 13836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266120,36 +196930,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13838, "states": [ { "id": 13838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266198,36 +196998,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13840, "states": [ { "id": 13840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266276,36 +197066,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13842, "states": [ { "id": 13842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266354,36 +197134,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13844, "states": [ { "id": 13844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266432,36 +197202,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13846, "states": [ { "id": 13846, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13847, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266510,36 +197270,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13848, "states": [ { "id": 13848, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13849, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266588,36 +197338,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13850, "states": [ { "id": 13850, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13851, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266666,36 +197406,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13852, "states": [ { "id": 13852, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13853, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266744,36 +197474,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13854, "states": [ { "id": 13854, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13855, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266822,36 +197542,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13856, "states": [ { "id": 13856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266900,36 +197610,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13858, "states": [ { "id": 13858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -266978,36 +197678,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13860, "states": [ { "id": 13860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267056,36 +197746,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13862, "states": [ { "id": 13862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267134,36 +197814,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13864, "states": [ { "id": 13864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267212,36 +197882,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13866, "states": [ { "id": 13866, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13867, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267290,36 +197950,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13868, "states": [ { "id": 13868, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13869, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267368,36 +198018,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13870, "states": [ { "id": 13870, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13871, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267446,36 +198086,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13872, "states": [ { "id": 13872, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13873, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267524,36 +198154,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13874, "states": [ { "id": 13874, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13875, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267602,121 +198222,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13876, "states": [ { "id": 13876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267765,121 +198345,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13884, "states": [ { "id": 13884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -267928,121 +198468,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13892, "states": [ { "id": 13892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -268091,121 +198591,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13900, "states": [ { "id": 13900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -268254,121 +198714,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13908, "states": [ { "id": 13908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -268417,121 +198837,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13916, "states": [ { "id": 13916, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13917, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13918, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13919, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13920, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13921, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13922, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13923, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -268580,121 +198960,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13924, "states": [ { "id": 13924, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13925, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13926, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13927, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13928, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13929, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13930, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13931, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -268743,121 +199083,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13932, "states": [ { "id": 13932, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13933, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13934, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13935, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13936, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13937, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13938, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13939, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -268906,121 +199206,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13940, "states": [ { "id": 13940, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13941, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13942, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13943, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13944, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13945, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13946, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13947, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -269069,121 +199329,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 13948, "states": [ { "id": 13948, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13949, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13950, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13951, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13952, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13953, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13954, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 13955, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -269262,135 +199482,95 @@ ] }, "properties": [ - -384040614, - 795783032 + -1028888783, + 989206919 ], "default_state_id": 13956, "states": [ { "id": 13956, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 225 ] }, { "id": 13957, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 225 ] }, { "id": 13958, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 226 ] }, { "id": 13959, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 226 ] }, { "id": 13960, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 227 ] }, { "id": 13961, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 227 ] }, { "id": 13962, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 228 ] }, { "id": 13963, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 228 ] @@ -269445,17 +199625,12 @@ "states": [ { "id": 13964, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -269489,22 +199664,17 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 13965, "states": [ { "id": 13965, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 229 ], @@ -269512,16 +199682,11 @@ }, { "id": 13966, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HAT", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 229 ], @@ -269565,16 +199730,11 @@ "states": [ { "id": 13967, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -269611,200 +199771,140 @@ ] }, "properties": [ - 356708211, - -9007773, - -538778284 + -288139958, + 715473762, + -1183626453 ], "default_state_id": 13968, "states": [ { "id": 13968, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13969, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13970, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13971, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13972, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13973, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13974, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13975, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13976, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13977, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13978, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] }, { "id": 13979, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 230 ] @@ -269862,16 +199962,11 @@ "states": [ { "id": 13980, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -269893,16 +199988,11 @@ "states": [ { "id": 13981, - "air": true, - "is_solid": false, + "state_flags": 17, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -269922,16 +200012,11 @@ "states": [ { "id": 13982, - "air": true, - "is_solid": false, + "state_flags": 17, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -269947,36 +200032,26 @@ "blast_resistance": 0.0, "item_id": 0, "properties": [ - -243036333 + -49612446 ], "default_state_id": 13983, "states": [ { "id": 13983, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 13984, - "air": false, - "is_solid": false, + "state_flags": 48, "instrument": "HARP", - "is_liquid": true, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -270013,26 +200088,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 13996, "states": [ { "id": 13985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -270040,17 +200110,12 @@ }, { "id": 13986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -270058,17 +200123,12 @@ }, { "id": 13987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -270077,17 +200137,12 @@ }, { "id": 13988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -270096,17 +200151,12 @@ }, { "id": 13989, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -270115,17 +200165,12 @@ }, { "id": 13990, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -270134,17 +200179,12 @@ }, { "id": 13991, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -270153,17 +200193,12 @@ }, { "id": 13992, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -270172,17 +200207,12 @@ }, { "id": 13993, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -270191,17 +200221,12 @@ }, { "id": 13994, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -270210,17 +200235,12 @@ }, { "id": 13995, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -270228,17 +200248,12 @@ }, { "id": 13996, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -270246,17 +200261,12 @@ }, { "id": 13997, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -270265,17 +200275,12 @@ }, { "id": 13998, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -270284,17 +200289,12 @@ }, { "id": 13999, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -270303,17 +200303,12 @@ }, { "id": 14000, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -270322,17 +200317,12 @@ }, { "id": 14001, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -270340,17 +200330,12 @@ }, { "id": 14002, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -270358,17 +200343,12 @@ }, { "id": 14003, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -270376,17 +200356,12 @@ }, { "id": 14004, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -270394,17 +200369,12 @@ }, { "id": 14005, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -270412,17 +200382,12 @@ }, { "id": 14006, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -270430,17 +200395,12 @@ }, { "id": 14007, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -270449,17 +200409,12 @@ }, { "id": 14008, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -270468,17 +200423,12 @@ }, { "id": 14009, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -270487,17 +200437,12 @@ }, { "id": 14010, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -270506,17 +200451,12 @@ }, { "id": 14011, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -270525,17 +200465,12 @@ }, { "id": 14012, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -270544,17 +200479,12 @@ }, { "id": 14013, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -270563,17 +200493,12 @@ }, { "id": 14014, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -270582,17 +200507,12 @@ }, { "id": 14015, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -270600,17 +200520,12 @@ }, { "id": 14016, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -270618,17 +200533,12 @@ }, { "id": 14017, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -270637,17 +200547,12 @@ }, { "id": 14018, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -270656,17 +200561,12 @@ }, { "id": 14019, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -270675,17 +200575,12 @@ }, { "id": 14020, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -270694,17 +200589,12 @@ }, { "id": 14021, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -270712,17 +200602,12 @@ }, { "id": 14022, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -270730,17 +200615,12 @@ }, { "id": 14023, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -270748,17 +200628,12 @@ }, { "id": 14024, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -270766,17 +200641,12 @@ }, { "id": 14025, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -270784,17 +200654,12 @@ }, { "id": 14026, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -270802,17 +200667,12 @@ }, { "id": 14027, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -270821,17 +200681,12 @@ }, { "id": 14028, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -270840,17 +200695,12 @@ }, { "id": 14029, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -270859,17 +200709,12 @@ }, { "id": 14030, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -270878,17 +200723,12 @@ }, { "id": 14031, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -270897,17 +200737,12 @@ }, { "id": 14032, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -270916,17 +200751,12 @@ }, { "id": 14033, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -270935,17 +200765,12 @@ }, { "id": 14034, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -270954,17 +200779,12 @@ }, { "id": 14035, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -270972,17 +200792,12 @@ }, { "id": 14036, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -270990,17 +200805,12 @@ }, { "id": 14037, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -271009,17 +200819,12 @@ }, { "id": 14038, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -271028,17 +200833,12 @@ }, { "id": 14039, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -271047,17 +200847,12 @@ }, { "id": 14040, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -271066,17 +200861,12 @@ }, { "id": 14041, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -271084,17 +200874,12 @@ }, { "id": 14042, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -271102,17 +200887,12 @@ }, { "id": 14043, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -271120,17 +200900,12 @@ }, { "id": 14044, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -271138,17 +200913,12 @@ }, { "id": 14045, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -271156,17 +200926,12 @@ }, { "id": 14046, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -271174,17 +200939,12 @@ }, { "id": 14047, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -271193,17 +200953,12 @@ }, { "id": 14048, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -271212,17 +200967,12 @@ }, { "id": 14049, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -271231,17 +200981,12 @@ }, { "id": 14050, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -271250,17 +200995,12 @@ }, { "id": 14051, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -271269,17 +201009,12 @@ }, { "id": 14052, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -271288,17 +201023,12 @@ }, { "id": 14053, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -271307,17 +201037,12 @@ }, { "id": 14054, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -271326,17 +201051,12 @@ }, { "id": 14055, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -271344,17 +201064,12 @@ }, { "id": 14056, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -271362,17 +201077,12 @@ }, { "id": 14057, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -271381,17 +201091,12 @@ }, { "id": 14058, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -271400,17 +201105,12 @@ }, { "id": 14059, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -271419,17 +201119,12 @@ }, { "id": 14060, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -271438,17 +201133,12 @@ }, { "id": 14061, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -271456,17 +201146,12 @@ }, { "id": 14062, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -271474,17 +201159,12 @@ }, { "id": 14063, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -271492,17 +201172,12 @@ }, { "id": 14064, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -271542,26 +201217,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14076, "states": [ { "id": 14065, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -271569,17 +201239,12 @@ }, { "id": 14066, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -271587,17 +201252,12 @@ }, { "id": 14067, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -271606,17 +201266,12 @@ }, { "id": 14068, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -271625,17 +201280,12 @@ }, { "id": 14069, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -271644,17 +201294,12 @@ }, { "id": 14070, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -271663,17 +201308,12 @@ }, { "id": 14071, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -271682,17 +201322,12 @@ }, { "id": 14072, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -271701,17 +201336,12 @@ }, { "id": 14073, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -271720,17 +201350,12 @@ }, { "id": 14074, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -271739,17 +201364,12 @@ }, { "id": 14075, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -271757,17 +201377,12 @@ }, { "id": 14076, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -271775,17 +201390,12 @@ }, { "id": 14077, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -271794,17 +201404,12 @@ }, { "id": 14078, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -271813,17 +201418,12 @@ }, { "id": 14079, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -271832,17 +201432,12 @@ }, { "id": 14080, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -271851,17 +201446,12 @@ }, { "id": 14081, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -271869,17 +201459,12 @@ }, { "id": 14082, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -271887,17 +201472,12 @@ }, { "id": 14083, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -271905,17 +201485,12 @@ }, { "id": 14084, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -271923,17 +201498,12 @@ }, { "id": 14085, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -271941,17 +201511,12 @@ }, { "id": 14086, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -271959,17 +201524,12 @@ }, { "id": 14087, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -271978,17 +201538,12 @@ }, { "id": 14088, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -271997,17 +201552,12 @@ }, { "id": 14089, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -272016,17 +201566,12 @@ }, { "id": 14090, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -272035,17 +201580,12 @@ }, { "id": 14091, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -272054,17 +201594,12 @@ }, { "id": 14092, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -272073,17 +201608,12 @@ }, { "id": 14093, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -272092,17 +201622,12 @@ }, { "id": 14094, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -272111,17 +201636,12 @@ }, { "id": 14095, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -272129,17 +201649,12 @@ }, { "id": 14096, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -272147,17 +201662,12 @@ }, { "id": 14097, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -272166,17 +201676,12 @@ }, { "id": 14098, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -272185,17 +201690,12 @@ }, { "id": 14099, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -272204,17 +201704,12 @@ }, { "id": 14100, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -272223,17 +201718,12 @@ }, { "id": 14101, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -272241,17 +201731,12 @@ }, { "id": 14102, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -272259,17 +201744,12 @@ }, { "id": 14103, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -272277,17 +201757,12 @@ }, { "id": 14104, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -272295,17 +201770,12 @@ }, { "id": 14105, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -272313,17 +201783,12 @@ }, { "id": 14106, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -272331,17 +201796,12 @@ }, { "id": 14107, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -272350,17 +201810,12 @@ }, { "id": 14108, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -272369,17 +201824,12 @@ }, { "id": 14109, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -272388,17 +201838,12 @@ }, { "id": 14110, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -272407,17 +201852,12 @@ }, { "id": 14111, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -272426,17 +201866,12 @@ }, { "id": 14112, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -272445,17 +201880,12 @@ }, { "id": 14113, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -272464,17 +201894,12 @@ }, { "id": 14114, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -272483,17 +201908,12 @@ }, { "id": 14115, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -272501,17 +201921,12 @@ }, { "id": 14116, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -272519,17 +201934,12 @@ }, { "id": 14117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -272538,17 +201948,12 @@ }, { "id": 14118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -272557,17 +201962,12 @@ }, { "id": 14119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -272576,17 +201976,12 @@ }, { "id": 14120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -272595,17 +201990,12 @@ }, { "id": 14121, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -272613,17 +202003,12 @@ }, { "id": 14122, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -272631,17 +202016,12 @@ }, { "id": 14123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -272649,17 +202029,12 @@ }, { "id": 14124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -272667,17 +202042,12 @@ }, { "id": 14125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -272685,17 +202055,12 @@ }, { "id": 14126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -272703,17 +202068,12 @@ }, { "id": 14127, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -272722,17 +202082,12 @@ }, { "id": 14128, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -272741,17 +202096,12 @@ }, { "id": 14129, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -272760,17 +202110,12 @@ }, { "id": 14130, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -272779,17 +202124,12 @@ }, { "id": 14131, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -272798,17 +202138,12 @@ }, { "id": 14132, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -272817,17 +202152,12 @@ }, { "id": 14133, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -272836,17 +202166,12 @@ }, { "id": 14134, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -272855,17 +202180,12 @@ }, { "id": 14135, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -272873,17 +202193,12 @@ }, { "id": 14136, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -272891,17 +202206,12 @@ }, { "id": 14137, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -272910,17 +202220,12 @@ }, { "id": 14138, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -272929,17 +202234,12 @@ }, { "id": 14139, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -272948,17 +202248,12 @@ }, { "id": 14140, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -272967,17 +202262,12 @@ }, { "id": 14141, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -272985,17 +202275,12 @@ }, { "id": 14142, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -273003,17 +202288,12 @@ }, { "id": 14143, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -273021,17 +202301,12 @@ }, { "id": 14144, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -273071,26 +202346,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14156, "states": [ { "id": 14145, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -273098,17 +202368,12 @@ }, { "id": 14146, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -273116,17 +202381,12 @@ }, { "id": 14147, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -273135,17 +202395,12 @@ }, { "id": 14148, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -273154,17 +202409,12 @@ }, { "id": 14149, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -273173,17 +202423,12 @@ }, { "id": 14150, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -273192,17 +202437,12 @@ }, { "id": 14151, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -273211,17 +202451,12 @@ }, { "id": 14152, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -273230,17 +202465,12 @@ }, { "id": 14153, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -273249,17 +202479,12 @@ }, { "id": 14154, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -273268,17 +202493,12 @@ }, { "id": 14155, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -273286,17 +202506,12 @@ }, { "id": 14156, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -273304,17 +202519,12 @@ }, { "id": 14157, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -273323,17 +202533,12 @@ }, { "id": 14158, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -273342,17 +202547,12 @@ }, { "id": 14159, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -273361,17 +202561,12 @@ }, { "id": 14160, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -273380,17 +202575,12 @@ }, { "id": 14161, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -273398,17 +202588,12 @@ }, { "id": 14162, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -273416,17 +202601,12 @@ }, { "id": 14163, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -273434,17 +202614,12 @@ }, { "id": 14164, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -273452,17 +202627,12 @@ }, { "id": 14165, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -273470,17 +202640,12 @@ }, { "id": 14166, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -273488,17 +202653,12 @@ }, { "id": 14167, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -273507,17 +202667,12 @@ }, { "id": 14168, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -273526,17 +202681,12 @@ }, { "id": 14169, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -273545,17 +202695,12 @@ }, { "id": 14170, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -273564,17 +202709,12 @@ }, { "id": 14171, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -273583,17 +202723,12 @@ }, { "id": 14172, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -273602,17 +202737,12 @@ }, { "id": 14173, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -273621,17 +202751,12 @@ }, { "id": 14174, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -273640,17 +202765,12 @@ }, { "id": 14175, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -273658,17 +202778,12 @@ }, { "id": 14176, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -273676,17 +202791,12 @@ }, { "id": 14177, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -273695,17 +202805,12 @@ }, { "id": 14178, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -273714,17 +202819,12 @@ }, { "id": 14179, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -273733,17 +202833,12 @@ }, { "id": 14180, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -273752,17 +202847,12 @@ }, { "id": 14181, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -273770,17 +202860,12 @@ }, { "id": 14182, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -273788,17 +202873,12 @@ }, { "id": 14183, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -273806,17 +202886,12 @@ }, { "id": 14184, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -273824,17 +202899,12 @@ }, { "id": 14185, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -273842,17 +202912,12 @@ }, { "id": 14186, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -273860,17 +202925,12 @@ }, { "id": 14187, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -273879,17 +202939,12 @@ }, { "id": 14188, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -273898,17 +202953,12 @@ }, { "id": 14189, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -273917,17 +202967,12 @@ }, { "id": 14190, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -273936,17 +202981,12 @@ }, { "id": 14191, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -273955,17 +202995,12 @@ }, { "id": 14192, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -273974,17 +203009,12 @@ }, { "id": 14193, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -273993,17 +203023,12 @@ }, { "id": 14194, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -274012,17 +203037,12 @@ }, { "id": 14195, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -274030,17 +203050,12 @@ }, { "id": 14196, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -274048,17 +203063,12 @@ }, { "id": 14197, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -274067,17 +203077,12 @@ }, { "id": 14198, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -274086,17 +203091,12 @@ }, { "id": 14199, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -274105,17 +203105,12 @@ }, { "id": 14200, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -274124,17 +203119,12 @@ }, { "id": 14201, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -274142,17 +203132,12 @@ }, { "id": 14202, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -274160,17 +203145,12 @@ }, { "id": 14203, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -274178,17 +203158,12 @@ }, { "id": 14204, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -274196,17 +203171,12 @@ }, { "id": 14205, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -274214,17 +203184,12 @@ }, { "id": 14206, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -274232,17 +203197,12 @@ }, { "id": 14207, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -274251,17 +203211,12 @@ }, { "id": 14208, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -274270,17 +203225,12 @@ }, { "id": 14209, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -274289,17 +203239,12 @@ }, { "id": 14210, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -274308,17 +203253,12 @@ }, { "id": 14211, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -274327,17 +203267,12 @@ }, { "id": 14212, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -274346,17 +203281,12 @@ }, { "id": 14213, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -274365,17 +203295,12 @@ }, { "id": 14214, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -274384,17 +203309,12 @@ }, { "id": 14215, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -274402,17 +203322,12 @@ }, { "id": 14216, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -274420,17 +203335,12 @@ }, { "id": 14217, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -274439,17 +203349,12 @@ }, { "id": 14218, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -274458,17 +203363,12 @@ }, { "id": 14219, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -274477,17 +203377,12 @@ }, { "id": 14220, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -274496,17 +203391,12 @@ }, { "id": 14221, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -274514,17 +203404,12 @@ }, { "id": 14222, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -274532,17 +203417,12 @@ }, { "id": 14223, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -274550,17 +203430,12 @@ }, { "id": 14224, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -274600,26 +203475,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14236, "states": [ { "id": 14225, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -274627,17 +203497,12 @@ }, { "id": 14226, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -274645,17 +203510,12 @@ }, { "id": 14227, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -274664,17 +203524,12 @@ }, { "id": 14228, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -274683,17 +203538,12 @@ }, { "id": 14229, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -274702,17 +203552,12 @@ }, { "id": 14230, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -274721,17 +203566,12 @@ }, { "id": 14231, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -274740,17 +203580,12 @@ }, { "id": 14232, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -274759,17 +203594,12 @@ }, { "id": 14233, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -274778,17 +203608,12 @@ }, { "id": 14234, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -274797,17 +203622,12 @@ }, { "id": 14235, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -274815,17 +203635,12 @@ }, { "id": 14236, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -274833,17 +203648,12 @@ }, { "id": 14237, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -274852,17 +203662,12 @@ }, { "id": 14238, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -274871,17 +203676,12 @@ }, { "id": 14239, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -274890,17 +203690,12 @@ }, { "id": 14240, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -274909,17 +203704,12 @@ }, { "id": 14241, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -274927,17 +203717,12 @@ }, { "id": 14242, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -274945,17 +203730,12 @@ }, { "id": 14243, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -274963,17 +203743,12 @@ }, { "id": 14244, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -274981,17 +203756,12 @@ }, { "id": 14245, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -274999,17 +203769,12 @@ }, { "id": 14246, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -275017,17 +203782,12 @@ }, { "id": 14247, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -275036,17 +203796,12 @@ }, { "id": 14248, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -275055,17 +203810,12 @@ }, { "id": 14249, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -275074,17 +203824,12 @@ }, { "id": 14250, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -275093,17 +203838,12 @@ }, { "id": 14251, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -275112,17 +203852,12 @@ }, { "id": 14252, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -275131,17 +203866,12 @@ }, { "id": 14253, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -275150,17 +203880,12 @@ }, { "id": 14254, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -275169,17 +203894,12 @@ }, { "id": 14255, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -275187,17 +203907,12 @@ }, { "id": 14256, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -275205,17 +203920,12 @@ }, { "id": 14257, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -275224,17 +203934,12 @@ }, { "id": 14258, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -275243,17 +203948,12 @@ }, { "id": 14259, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -275262,17 +203962,12 @@ }, { "id": 14260, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -275281,17 +203976,12 @@ }, { "id": 14261, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -275299,17 +203989,12 @@ }, { "id": 14262, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -275317,17 +204002,12 @@ }, { "id": 14263, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -275335,17 +204015,12 @@ }, { "id": 14264, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -275353,17 +204028,12 @@ }, { "id": 14265, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -275371,17 +204041,12 @@ }, { "id": 14266, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -275389,17 +204054,12 @@ }, { "id": 14267, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -275408,17 +204068,12 @@ }, { "id": 14268, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -275427,17 +204082,12 @@ }, { "id": 14269, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -275446,17 +204096,12 @@ }, { "id": 14270, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -275465,17 +204110,12 @@ }, { "id": 14271, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -275484,17 +204124,12 @@ }, { "id": 14272, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -275503,17 +204138,12 @@ }, { "id": 14273, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -275522,17 +204152,12 @@ }, { "id": 14274, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -275541,17 +204166,12 @@ }, { "id": 14275, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -275559,17 +204179,12 @@ }, { "id": 14276, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -275577,17 +204192,12 @@ }, { "id": 14277, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -275596,17 +204206,12 @@ }, { "id": 14278, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -275615,17 +204220,12 @@ }, { "id": 14279, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -275634,17 +204234,12 @@ }, { "id": 14280, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -275653,17 +204248,12 @@ }, { "id": 14281, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -275671,17 +204261,12 @@ }, { "id": 14282, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -275689,17 +204274,12 @@ }, { "id": 14283, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -275707,17 +204287,12 @@ }, { "id": 14284, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -275725,17 +204300,12 @@ }, { "id": 14285, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -275743,17 +204313,12 @@ }, { "id": 14286, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -275761,17 +204326,12 @@ }, { "id": 14287, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -275780,17 +204340,12 @@ }, { "id": 14288, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -275799,17 +204354,12 @@ }, { "id": 14289, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -275818,17 +204368,12 @@ }, { "id": 14290, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -275837,17 +204382,12 @@ }, { "id": 14291, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -275856,17 +204396,12 @@ }, { "id": 14292, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -275875,17 +204410,12 @@ }, { "id": 14293, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -275894,17 +204424,12 @@ }, { "id": 14294, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -275913,17 +204438,12 @@ }, { "id": 14295, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -275931,17 +204451,12 @@ }, { "id": 14296, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -275949,17 +204464,12 @@ }, { "id": 14297, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -275968,17 +204478,12 @@ }, { "id": 14298, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -275987,17 +204492,12 @@ }, { "id": 14299, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -276006,17 +204506,12 @@ }, { "id": 14300, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -276025,17 +204520,12 @@ }, { "id": 14301, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -276043,17 +204533,12 @@ }, { "id": 14302, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -276061,17 +204546,12 @@ }, { "id": 14303, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -276079,17 +204559,12 @@ }, { "id": 14304, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -276129,26 +204604,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14316, "states": [ { "id": 14305, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -276156,17 +204626,12 @@ }, { "id": 14306, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -276174,17 +204639,12 @@ }, { "id": 14307, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -276193,17 +204653,12 @@ }, { "id": 14308, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -276212,17 +204667,12 @@ }, { "id": 14309, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -276231,17 +204681,12 @@ }, { "id": 14310, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -276250,17 +204695,12 @@ }, { "id": 14311, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -276269,17 +204709,12 @@ }, { "id": 14312, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -276288,17 +204723,12 @@ }, { "id": 14313, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -276307,17 +204737,12 @@ }, { "id": 14314, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -276326,17 +204751,12 @@ }, { "id": 14315, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -276344,17 +204764,12 @@ }, { "id": 14316, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -276362,17 +204777,12 @@ }, { "id": 14317, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -276381,17 +204791,12 @@ }, { "id": 14318, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -276400,17 +204805,12 @@ }, { "id": 14319, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -276419,17 +204819,12 @@ }, { "id": 14320, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -276438,17 +204833,12 @@ }, { "id": 14321, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -276456,17 +204846,12 @@ }, { "id": 14322, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -276474,17 +204859,12 @@ }, { "id": 14323, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -276492,17 +204872,12 @@ }, { "id": 14324, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -276510,17 +204885,12 @@ }, { "id": 14325, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -276528,17 +204898,12 @@ }, { "id": 14326, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -276546,17 +204911,12 @@ }, { "id": 14327, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -276565,17 +204925,12 @@ }, { "id": 14328, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -276584,17 +204939,12 @@ }, { "id": 14329, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -276603,17 +204953,12 @@ }, { "id": 14330, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -276622,17 +204967,12 @@ }, { "id": 14331, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -276641,17 +204981,12 @@ }, { "id": 14332, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -276660,17 +204995,12 @@ }, { "id": 14333, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -276679,17 +205009,12 @@ }, { "id": 14334, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -276698,17 +205023,12 @@ }, { "id": 14335, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -276716,17 +205036,12 @@ }, { "id": 14336, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -276734,17 +205049,12 @@ }, { "id": 14337, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -276753,17 +205063,12 @@ }, { "id": 14338, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -276772,17 +205077,12 @@ }, { "id": 14339, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -276791,17 +205091,12 @@ }, { "id": 14340, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -276810,17 +205105,12 @@ }, { "id": 14341, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -276828,17 +205118,12 @@ }, { "id": 14342, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -276846,17 +205131,12 @@ }, { "id": 14343, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -276864,17 +205144,12 @@ }, { "id": 14344, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -276882,17 +205157,12 @@ }, { "id": 14345, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -276900,17 +205170,12 @@ }, { "id": 14346, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -276918,17 +205183,12 @@ }, { "id": 14347, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -276937,17 +205197,12 @@ }, { "id": 14348, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -276956,17 +205211,12 @@ }, { "id": 14349, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -276975,17 +205225,12 @@ }, { "id": 14350, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -276994,17 +205239,12 @@ }, { "id": 14351, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -277013,17 +205253,12 @@ }, { "id": 14352, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -277032,17 +205267,12 @@ }, { "id": 14353, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -277051,17 +205281,12 @@ }, { "id": 14354, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -277070,17 +205295,12 @@ }, { "id": 14355, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -277088,17 +205308,12 @@ }, { "id": 14356, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -277106,17 +205321,12 @@ }, { "id": 14357, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -277125,17 +205335,12 @@ }, { "id": 14358, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -277144,17 +205349,12 @@ }, { "id": 14359, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -277163,17 +205363,12 @@ }, { "id": 14360, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -277182,17 +205377,12 @@ }, { "id": 14361, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -277200,17 +205390,12 @@ }, { "id": 14362, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -277218,17 +205403,12 @@ }, { "id": 14363, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -277236,17 +205416,12 @@ }, { "id": 14364, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -277254,17 +205429,12 @@ }, { "id": 14365, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -277272,17 +205442,12 @@ }, { "id": 14366, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -277290,17 +205455,12 @@ }, { "id": 14367, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -277309,17 +205469,12 @@ }, { "id": 14368, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -277328,17 +205483,12 @@ }, { "id": 14369, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -277347,17 +205497,12 @@ }, { "id": 14370, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -277366,17 +205511,12 @@ }, { "id": 14371, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -277385,17 +205525,12 @@ }, { "id": 14372, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -277404,17 +205539,12 @@ }, { "id": 14373, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -277423,17 +205553,12 @@ }, { "id": 14374, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -277442,17 +205567,12 @@ }, { "id": 14375, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -277460,17 +205580,12 @@ }, { "id": 14376, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -277478,17 +205593,12 @@ }, { "id": 14377, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -277497,17 +205607,12 @@ }, { "id": 14378, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -277516,17 +205621,12 @@ }, { "id": 14379, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -277535,17 +205635,12 @@ }, { "id": 14380, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -277554,17 +205649,12 @@ }, { "id": 14381, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -277572,17 +205662,12 @@ }, { "id": 14382, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -277590,17 +205675,12 @@ }, { "id": 14383, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -277608,17 +205688,12 @@ }, { "id": 14384, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -277658,26 +205733,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14396, "states": [ { "id": 14385, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -277685,17 +205755,12 @@ }, { "id": 14386, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -277703,17 +205768,12 @@ }, { "id": 14387, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -277722,17 +205782,12 @@ }, { "id": 14388, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -277741,17 +205796,12 @@ }, { "id": 14389, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -277760,17 +205810,12 @@ }, { "id": 14390, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -277779,17 +205824,12 @@ }, { "id": 14391, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -277798,17 +205838,12 @@ }, { "id": 14392, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -277817,17 +205852,12 @@ }, { "id": 14393, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -277836,17 +205866,12 @@ }, { "id": 14394, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -277855,17 +205880,12 @@ }, { "id": 14395, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -277873,17 +205893,12 @@ }, { "id": 14396, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -277891,17 +205906,12 @@ }, { "id": 14397, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -277910,17 +205920,12 @@ }, { "id": 14398, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -277929,17 +205934,12 @@ }, { "id": 14399, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -277948,17 +205948,12 @@ }, { "id": 14400, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -277967,17 +205962,12 @@ }, { "id": 14401, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -277985,17 +205975,12 @@ }, { "id": 14402, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -278003,17 +205988,12 @@ }, { "id": 14403, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -278021,17 +206001,12 @@ }, { "id": 14404, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -278039,17 +206014,12 @@ }, { "id": 14405, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -278057,17 +206027,12 @@ }, { "id": 14406, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -278075,17 +206040,12 @@ }, { "id": 14407, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -278094,17 +206054,12 @@ }, { "id": 14408, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -278113,17 +206068,12 @@ }, { "id": 14409, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -278132,17 +206082,12 @@ }, { "id": 14410, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -278151,17 +206096,12 @@ }, { "id": 14411, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -278170,17 +206110,12 @@ }, { "id": 14412, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -278189,17 +206124,12 @@ }, { "id": 14413, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -278208,17 +206138,12 @@ }, { "id": 14414, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -278227,17 +206152,12 @@ }, { "id": 14415, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -278245,17 +206165,12 @@ }, { "id": 14416, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -278263,17 +206178,12 @@ }, { "id": 14417, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -278282,17 +206192,12 @@ }, { "id": 14418, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -278301,17 +206206,12 @@ }, { "id": 14419, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -278320,17 +206220,12 @@ }, { "id": 14420, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -278339,17 +206234,12 @@ }, { "id": 14421, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -278357,17 +206247,12 @@ }, { "id": 14422, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -278375,17 +206260,12 @@ }, { "id": 14423, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -278393,17 +206273,12 @@ }, { "id": 14424, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -278411,17 +206286,12 @@ }, { "id": 14425, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -278429,17 +206299,12 @@ }, { "id": 14426, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -278447,17 +206312,12 @@ }, { "id": 14427, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -278466,17 +206326,12 @@ }, { "id": 14428, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -278485,17 +206340,12 @@ }, { "id": 14429, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -278504,17 +206354,12 @@ }, { "id": 14430, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -278523,17 +206368,12 @@ }, { "id": 14431, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -278542,17 +206382,12 @@ }, { "id": 14432, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -278561,17 +206396,12 @@ }, { "id": 14433, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -278580,17 +206410,12 @@ }, { "id": 14434, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -278599,17 +206424,12 @@ }, { "id": 14435, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -278617,17 +206437,12 @@ }, { "id": 14436, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -278635,17 +206450,12 @@ }, { "id": 14437, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -278654,17 +206464,12 @@ }, { "id": 14438, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -278673,17 +206478,12 @@ }, { "id": 14439, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -278692,17 +206492,12 @@ }, { "id": 14440, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -278711,17 +206506,12 @@ }, { "id": 14441, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -278729,17 +206519,12 @@ }, { "id": 14442, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -278747,17 +206532,12 @@ }, { "id": 14443, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -278765,17 +206545,12 @@ }, { "id": 14444, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -278783,17 +206558,12 @@ }, { "id": 14445, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -278801,17 +206571,12 @@ }, { "id": 14446, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -278819,17 +206584,12 @@ }, { "id": 14447, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -278838,17 +206598,12 @@ }, { "id": 14448, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -278857,17 +206612,12 @@ }, { "id": 14449, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -278876,17 +206626,12 @@ }, { "id": 14450, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -278895,17 +206640,12 @@ }, { "id": 14451, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -278914,17 +206654,12 @@ }, { "id": 14452, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -278933,17 +206668,12 @@ }, { "id": 14453, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -278952,17 +206682,12 @@ }, { "id": 14454, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -278971,17 +206696,12 @@ }, { "id": 14455, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -278989,17 +206709,12 @@ }, { "id": 14456, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -279007,17 +206722,12 @@ }, { "id": 14457, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -279026,17 +206736,12 @@ }, { "id": 14458, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -279045,17 +206750,12 @@ }, { "id": 14459, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -279064,17 +206764,12 @@ }, { "id": 14460, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -279083,17 +206778,12 @@ }, { "id": 14461, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -279101,17 +206791,12 @@ }, { "id": 14462, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -279119,17 +206804,12 @@ }, { "id": 14463, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -279137,17 +206817,12 @@ }, { "id": 14464, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -279187,26 +206862,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14476, "states": [ { "id": 14465, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -279214,17 +206884,12 @@ }, { "id": 14466, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -279232,17 +206897,12 @@ }, { "id": 14467, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -279251,17 +206911,12 @@ }, { "id": 14468, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -279270,17 +206925,12 @@ }, { "id": 14469, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -279289,17 +206939,12 @@ }, { "id": 14470, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -279308,17 +206953,12 @@ }, { "id": 14471, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -279327,17 +206967,12 @@ }, { "id": 14472, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -279346,17 +206981,12 @@ }, { "id": 14473, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -279365,17 +206995,12 @@ }, { "id": 14474, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -279384,17 +207009,12 @@ }, { "id": 14475, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -279402,17 +207022,12 @@ }, { "id": 14476, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -279420,17 +207035,12 @@ }, { "id": 14477, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -279439,17 +207049,12 @@ }, { "id": 14478, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -279458,17 +207063,12 @@ }, { "id": 14479, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -279477,17 +207077,12 @@ }, { "id": 14480, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -279496,17 +207091,12 @@ }, { "id": 14481, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -279514,17 +207104,12 @@ }, { "id": 14482, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -279532,17 +207117,12 @@ }, { "id": 14483, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -279550,17 +207130,12 @@ }, { "id": 14484, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -279568,17 +207143,12 @@ }, { "id": 14485, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -279586,17 +207156,12 @@ }, { "id": 14486, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -279604,17 +207169,12 @@ }, { "id": 14487, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -279623,17 +207183,12 @@ }, { "id": 14488, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -279642,17 +207197,12 @@ }, { "id": 14489, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -279661,17 +207211,12 @@ }, { "id": 14490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -279680,17 +207225,12 @@ }, { "id": 14491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -279699,17 +207239,12 @@ }, { "id": 14492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -279718,17 +207253,12 @@ }, { "id": 14493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -279737,17 +207267,12 @@ }, { "id": 14494, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -279756,17 +207281,12 @@ }, { "id": 14495, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -279774,17 +207294,12 @@ }, { "id": 14496, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -279792,17 +207307,12 @@ }, { "id": 14497, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -279811,17 +207321,12 @@ }, { "id": 14498, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -279830,17 +207335,12 @@ }, { "id": 14499, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -279849,17 +207349,12 @@ }, { "id": 14500, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -279868,17 +207363,12 @@ }, { "id": 14501, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -279886,17 +207376,12 @@ }, { "id": 14502, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -279904,17 +207389,12 @@ }, { "id": 14503, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -279922,17 +207402,12 @@ }, { "id": 14504, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -279940,17 +207415,12 @@ }, { "id": 14505, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -279958,17 +207428,12 @@ }, { "id": 14506, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -279976,17 +207441,12 @@ }, { "id": 14507, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -279995,17 +207455,12 @@ }, { "id": 14508, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -280014,17 +207469,12 @@ }, { "id": 14509, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -280033,17 +207483,12 @@ }, { "id": 14510, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -280052,17 +207497,12 @@ }, { "id": 14511, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -280071,17 +207511,12 @@ }, { "id": 14512, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -280090,17 +207525,12 @@ }, { "id": 14513, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -280109,17 +207539,12 @@ }, { "id": 14514, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -280128,17 +207553,12 @@ }, { "id": 14515, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -280146,17 +207566,12 @@ }, { "id": 14516, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -280164,17 +207579,12 @@ }, { "id": 14517, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -280183,17 +207593,12 @@ }, { "id": 14518, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -280202,17 +207607,12 @@ }, { "id": 14519, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -280221,17 +207621,12 @@ }, { "id": 14520, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -280240,17 +207635,12 @@ }, { "id": 14521, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -280258,17 +207648,12 @@ }, { "id": 14522, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -280276,17 +207661,12 @@ }, { "id": 14523, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -280294,17 +207674,12 @@ }, { "id": 14524, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -280312,17 +207687,12 @@ }, { "id": 14525, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -280330,17 +207700,12 @@ }, { "id": 14526, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -280348,17 +207713,12 @@ }, { "id": 14527, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -280367,17 +207727,12 @@ }, { "id": 14528, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -280386,17 +207741,12 @@ }, { "id": 14529, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -280405,17 +207755,12 @@ }, { "id": 14530, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -280424,17 +207769,12 @@ }, { "id": 14531, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -280443,17 +207783,12 @@ }, { "id": 14532, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -280462,17 +207797,12 @@ }, { "id": 14533, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -280481,17 +207811,12 @@ }, { "id": 14534, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -280500,17 +207825,12 @@ }, { "id": 14535, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -280518,17 +207838,12 @@ }, { "id": 14536, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -280536,17 +207851,12 @@ }, { "id": 14537, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -280555,17 +207865,12 @@ }, { "id": 14538, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -280574,17 +207879,12 @@ }, { "id": 14539, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -280593,17 +207893,12 @@ }, { "id": 14540, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -280612,17 +207907,12 @@ }, { "id": 14541, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -280630,17 +207920,12 @@ }, { "id": 14542, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -280648,17 +207933,12 @@ }, { "id": 14543, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -280666,17 +207946,12 @@ }, { "id": 14544, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -280716,26 +207991,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14556, "states": [ { "id": 14545, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -280743,17 +208013,12 @@ }, { "id": 14546, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -280761,17 +208026,12 @@ }, { "id": 14547, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -280780,17 +208040,12 @@ }, { "id": 14548, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -280799,17 +208054,12 @@ }, { "id": 14549, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -280818,17 +208068,12 @@ }, { "id": 14550, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -280837,17 +208082,12 @@ }, { "id": 14551, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -280856,17 +208096,12 @@ }, { "id": 14552, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -280875,17 +208110,12 @@ }, { "id": 14553, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -280894,17 +208124,12 @@ }, { "id": 14554, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -280913,17 +208138,12 @@ }, { "id": 14555, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -280931,17 +208151,12 @@ }, { "id": 14556, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -280949,17 +208164,12 @@ }, { "id": 14557, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -280968,17 +208178,12 @@ }, { "id": 14558, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -280987,17 +208192,12 @@ }, { "id": 14559, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -281006,17 +208206,12 @@ }, { "id": 14560, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -281025,17 +208220,12 @@ }, { "id": 14561, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -281043,17 +208233,12 @@ }, { "id": 14562, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -281061,17 +208246,12 @@ }, { "id": 14563, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -281079,17 +208259,12 @@ }, { "id": 14564, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -281097,17 +208272,12 @@ }, { "id": 14565, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -281115,17 +208285,12 @@ }, { "id": 14566, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -281133,17 +208298,12 @@ }, { "id": 14567, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -281152,17 +208312,12 @@ }, { "id": 14568, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -281171,17 +208326,12 @@ }, { "id": 14569, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -281190,17 +208340,12 @@ }, { "id": 14570, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -281209,17 +208354,12 @@ }, { "id": 14571, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -281228,17 +208368,12 @@ }, { "id": 14572, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -281247,17 +208382,12 @@ }, { "id": 14573, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -281266,17 +208396,12 @@ }, { "id": 14574, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -281285,17 +208410,12 @@ }, { "id": 14575, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -281303,17 +208423,12 @@ }, { "id": 14576, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -281321,17 +208436,12 @@ }, { "id": 14577, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -281340,17 +208450,12 @@ }, { "id": 14578, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -281359,17 +208464,12 @@ }, { "id": 14579, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -281378,17 +208478,12 @@ }, { "id": 14580, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -281397,17 +208492,12 @@ }, { "id": 14581, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -281415,17 +208505,12 @@ }, { "id": 14582, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -281433,17 +208518,12 @@ }, { "id": 14583, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -281451,17 +208531,12 @@ }, { "id": 14584, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -281469,17 +208544,12 @@ }, { "id": 14585, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -281487,17 +208557,12 @@ }, { "id": 14586, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -281505,17 +208570,12 @@ }, { "id": 14587, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -281524,17 +208584,12 @@ }, { "id": 14588, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -281543,17 +208598,12 @@ }, { "id": 14589, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -281562,17 +208612,12 @@ }, { "id": 14590, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -281581,17 +208626,12 @@ }, { "id": 14591, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -281600,17 +208640,12 @@ }, { "id": 14592, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -281619,17 +208654,12 @@ }, { "id": 14593, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -281638,17 +208668,12 @@ }, { "id": 14594, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -281657,17 +208682,12 @@ }, { "id": 14595, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -281675,17 +208695,12 @@ }, { "id": 14596, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -281693,17 +208708,12 @@ }, { "id": 14597, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -281712,17 +208722,12 @@ }, { "id": 14598, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -281731,17 +208736,12 @@ }, { "id": 14599, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -281750,17 +208750,12 @@ }, { "id": 14600, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -281769,17 +208764,12 @@ }, { "id": 14601, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -281787,17 +208777,12 @@ }, { "id": 14602, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -281805,17 +208790,12 @@ }, { "id": 14603, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -281823,17 +208803,12 @@ }, { "id": 14604, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -281841,17 +208816,12 @@ }, { "id": 14605, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -281859,17 +208829,12 @@ }, { "id": 14606, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -281877,17 +208842,12 @@ }, { "id": 14607, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -281896,17 +208856,12 @@ }, { "id": 14608, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -281915,17 +208870,12 @@ }, { "id": 14609, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -281934,17 +208884,12 @@ }, { "id": 14610, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -281953,17 +208898,12 @@ }, { "id": 14611, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -281972,17 +208912,12 @@ }, { "id": 14612, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -281991,17 +208926,12 @@ }, { "id": 14613, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -282010,17 +208940,12 @@ }, { "id": 14614, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -282029,17 +208954,12 @@ }, { "id": 14615, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -282047,17 +208967,12 @@ }, { "id": 14616, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -282065,17 +208980,12 @@ }, { "id": 14617, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -282084,17 +208994,12 @@ }, { "id": 14618, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -282103,17 +209008,12 @@ }, { "id": 14619, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -282122,17 +209022,12 @@ }, { "id": 14620, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -282141,17 +209036,12 @@ }, { "id": 14621, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -282159,17 +209049,12 @@ }, { "id": 14622, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -282177,17 +209062,12 @@ }, { "id": 14623, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -282195,17 +209075,12 @@ }, { "id": 14624, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -282245,26 +209120,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14636, "states": [ { "id": 14625, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -282272,17 +209142,12 @@ }, { "id": 14626, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -282290,17 +209155,12 @@ }, { "id": 14627, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -282309,17 +209169,12 @@ }, { "id": 14628, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -282328,17 +209183,12 @@ }, { "id": 14629, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -282347,17 +209197,12 @@ }, { "id": 14630, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -282366,17 +209211,12 @@ }, { "id": 14631, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -282385,17 +209225,12 @@ }, { "id": 14632, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -282404,17 +209239,12 @@ }, { "id": 14633, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -282423,17 +209253,12 @@ }, { "id": 14634, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -282442,17 +209267,12 @@ }, { "id": 14635, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -282460,17 +209280,12 @@ }, { "id": 14636, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -282478,17 +209293,12 @@ }, { "id": 14637, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -282497,17 +209307,12 @@ }, { "id": 14638, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -282516,17 +209321,12 @@ }, { "id": 14639, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -282535,17 +209335,12 @@ }, { "id": 14640, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -282554,17 +209349,12 @@ }, { "id": 14641, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -282572,17 +209362,12 @@ }, { "id": 14642, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -282590,17 +209375,12 @@ }, { "id": 14643, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -282608,17 +209388,12 @@ }, { "id": 14644, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -282626,17 +209401,12 @@ }, { "id": 14645, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -282644,17 +209414,12 @@ }, { "id": 14646, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -282662,17 +209427,12 @@ }, { "id": 14647, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -282681,17 +209441,12 @@ }, { "id": 14648, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -282700,17 +209455,12 @@ }, { "id": 14649, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -282719,17 +209469,12 @@ }, { "id": 14650, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -282738,17 +209483,12 @@ }, { "id": 14651, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -282757,17 +209497,12 @@ }, { "id": 14652, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -282776,17 +209511,12 @@ }, { "id": 14653, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -282795,17 +209525,12 @@ }, { "id": 14654, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -282814,17 +209539,12 @@ }, { "id": 14655, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -282832,17 +209552,12 @@ }, { "id": 14656, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -282850,17 +209565,12 @@ }, { "id": 14657, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -282869,17 +209579,12 @@ }, { "id": 14658, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -282888,17 +209593,12 @@ }, { "id": 14659, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -282907,17 +209607,12 @@ }, { "id": 14660, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -282926,17 +209621,12 @@ }, { "id": 14661, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -282944,17 +209634,12 @@ }, { "id": 14662, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -282962,17 +209647,12 @@ }, { "id": 14663, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -282980,17 +209660,12 @@ }, { "id": 14664, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -282998,17 +209673,12 @@ }, { "id": 14665, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -283016,17 +209686,12 @@ }, { "id": 14666, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -283034,17 +209699,12 @@ }, { "id": 14667, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -283053,17 +209713,12 @@ }, { "id": 14668, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -283072,17 +209727,12 @@ }, { "id": 14669, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -283091,17 +209741,12 @@ }, { "id": 14670, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -283110,17 +209755,12 @@ }, { "id": 14671, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -283129,17 +209769,12 @@ }, { "id": 14672, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -283148,17 +209783,12 @@ }, { "id": 14673, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -283167,17 +209797,12 @@ }, { "id": 14674, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -283186,17 +209811,12 @@ }, { "id": 14675, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -283204,17 +209824,12 @@ }, { "id": 14676, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -283222,17 +209837,12 @@ }, { "id": 14677, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -283241,17 +209851,12 @@ }, { "id": 14678, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -283260,17 +209865,12 @@ }, { "id": 14679, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -283279,17 +209879,12 @@ }, { "id": 14680, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -283298,17 +209893,12 @@ }, { "id": 14681, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -283316,17 +209906,12 @@ }, { "id": 14682, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -283334,17 +209919,12 @@ }, { "id": 14683, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -283352,17 +209932,12 @@ }, { "id": 14684, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -283370,17 +209945,12 @@ }, { "id": 14685, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -283388,17 +209958,12 @@ }, { "id": 14686, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -283406,17 +209971,12 @@ }, { "id": 14687, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -283425,17 +209985,12 @@ }, { "id": 14688, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -283444,17 +209999,12 @@ }, { "id": 14689, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -283463,17 +210013,12 @@ }, { "id": 14690, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -283482,17 +210027,12 @@ }, { "id": 14691, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -283501,17 +210041,12 @@ }, { "id": 14692, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -283520,17 +210055,12 @@ }, { "id": 14693, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -283539,17 +210069,12 @@ }, { "id": 14694, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -283558,17 +210083,12 @@ }, { "id": 14695, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -283576,17 +210096,12 @@ }, { "id": 14696, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -283594,17 +210109,12 @@ }, { "id": 14697, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -283613,17 +210123,12 @@ }, { "id": 14698, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -283632,17 +210137,12 @@ }, { "id": 14699, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -283651,17 +210151,12 @@ }, { "id": 14700, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -283670,17 +210165,12 @@ }, { "id": 14701, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -283688,17 +210178,12 @@ }, { "id": 14702, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -283706,17 +210191,12 @@ }, { "id": 14703, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -283724,17 +210204,12 @@ }, { "id": 14704, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -283774,26 +210249,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14716, "states": [ { "id": 14705, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -283801,17 +210271,12 @@ }, { "id": 14706, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -283819,17 +210284,12 @@ }, { "id": 14707, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -283838,17 +210298,12 @@ }, { "id": 14708, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -283857,17 +210312,12 @@ }, { "id": 14709, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -283876,17 +210326,12 @@ }, { "id": 14710, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -283895,17 +210340,12 @@ }, { "id": 14711, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -283914,17 +210354,12 @@ }, { "id": 14712, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -283933,17 +210368,12 @@ }, { "id": 14713, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -283952,17 +210382,12 @@ }, { "id": 14714, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -283971,17 +210396,12 @@ }, { "id": 14715, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -283989,17 +210409,12 @@ }, { "id": 14716, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -284007,17 +210422,12 @@ }, { "id": 14717, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284026,17 +210436,12 @@ }, { "id": 14718, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284045,17 +210450,12 @@ }, { "id": 14719, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -284064,17 +210464,12 @@ }, { "id": 14720, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -284083,17 +210478,12 @@ }, { "id": 14721, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -284101,17 +210491,12 @@ }, { "id": 14722, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -284119,17 +210504,12 @@ }, { "id": 14723, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -284137,17 +210517,12 @@ }, { "id": 14724, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -284155,17 +210530,12 @@ }, { "id": 14725, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -284173,17 +210543,12 @@ }, { "id": 14726, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -284191,17 +210556,12 @@ }, { "id": 14727, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -284210,17 +210570,12 @@ }, { "id": 14728, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -284229,17 +210584,12 @@ }, { "id": 14729, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -284248,17 +210598,12 @@ }, { "id": 14730, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -284267,17 +210612,12 @@ }, { "id": 14731, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -284286,17 +210626,12 @@ }, { "id": 14732, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -284305,17 +210640,12 @@ }, { "id": 14733, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -284324,17 +210654,12 @@ }, { "id": 14734, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -284343,17 +210668,12 @@ }, { "id": 14735, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -284361,17 +210681,12 @@ }, { "id": 14736, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -284379,17 +210694,12 @@ }, { "id": 14737, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -284398,17 +210708,12 @@ }, { "id": 14738, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -284417,17 +210722,12 @@ }, { "id": 14739, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284436,17 +210736,12 @@ }, { "id": 14740, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284455,17 +210750,12 @@ }, { "id": 14741, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -284473,17 +210763,12 @@ }, { "id": 14742, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -284491,17 +210776,12 @@ }, { "id": 14743, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -284509,17 +210789,12 @@ }, { "id": 14744, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -284527,17 +210802,12 @@ }, { "id": 14745, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -284545,17 +210815,12 @@ }, { "id": 14746, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -284563,17 +210828,12 @@ }, { "id": 14747, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -284582,17 +210842,12 @@ }, { "id": 14748, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -284601,17 +210856,12 @@ }, { "id": 14749, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -284620,17 +210870,12 @@ }, { "id": 14750, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -284639,17 +210884,12 @@ }, { "id": 14751, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -284658,17 +210898,12 @@ }, { "id": 14752, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -284677,17 +210912,12 @@ }, { "id": 14753, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -284696,17 +210926,12 @@ }, { "id": 14754, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -284715,17 +210940,12 @@ }, { "id": 14755, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -284733,17 +210953,12 @@ }, { "id": 14756, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -284751,17 +210966,12 @@ }, { "id": 14757, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284770,17 +210980,12 @@ }, { "id": 14758, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284789,17 +210994,12 @@ }, { "id": 14759, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284808,17 +211008,12 @@ }, { "id": 14760, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -284827,17 +211022,12 @@ }, { "id": 14761, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -284845,17 +211035,12 @@ }, { "id": 14762, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -284863,17 +211048,12 @@ }, { "id": 14763, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -284881,17 +211061,12 @@ }, { "id": 14764, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -284899,17 +211074,12 @@ }, { "id": 14765, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -284917,17 +211087,12 @@ }, { "id": 14766, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -284935,17 +211100,12 @@ }, { "id": 14767, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -284954,17 +211114,12 @@ }, { "id": 14768, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -284973,17 +211128,12 @@ }, { "id": 14769, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -284992,17 +211142,12 @@ }, { "id": 14770, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -285011,17 +211156,12 @@ }, { "id": 14771, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -285030,17 +211170,12 @@ }, { "id": 14772, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -285049,17 +211184,12 @@ }, { "id": 14773, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -285068,17 +211198,12 @@ }, { "id": 14774, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -285087,17 +211212,12 @@ }, { "id": 14775, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -285105,17 +211225,12 @@ }, { "id": 14776, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -285123,17 +211238,12 @@ }, { "id": 14777, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -285142,17 +211252,12 @@ }, { "id": 14778, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -285161,17 +211266,12 @@ }, { "id": 14779, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -285180,17 +211280,12 @@ }, { "id": 14780, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -285199,17 +211294,12 @@ }, { "id": 14781, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -285217,17 +211307,12 @@ }, { "id": 14782, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -285235,17 +211320,12 @@ }, { "id": 14783, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -285253,17 +211333,12 @@ }, { "id": 14784, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -285303,26 +211378,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14796, "states": [ { "id": 14785, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -285330,17 +211400,12 @@ }, { "id": 14786, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -285348,17 +211413,12 @@ }, { "id": 14787, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -285367,17 +211427,12 @@ }, { "id": 14788, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -285386,17 +211441,12 @@ }, { "id": 14789, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -285405,17 +211455,12 @@ }, { "id": 14790, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -285424,17 +211469,12 @@ }, { "id": 14791, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -285443,17 +211483,12 @@ }, { "id": 14792, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -285462,17 +211497,12 @@ }, { "id": 14793, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -285481,17 +211511,12 @@ }, { "id": 14794, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -285500,17 +211525,12 @@ }, { "id": 14795, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -285518,17 +211538,12 @@ }, { "id": 14796, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -285536,17 +211551,12 @@ }, { "id": 14797, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -285555,17 +211565,12 @@ }, { "id": 14798, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -285574,17 +211579,12 @@ }, { "id": 14799, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -285593,17 +211593,12 @@ }, { "id": 14800, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -285612,17 +211607,12 @@ }, { "id": 14801, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -285630,17 +211620,12 @@ }, { "id": 14802, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -285648,17 +211633,12 @@ }, { "id": 14803, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -285666,17 +211646,12 @@ }, { "id": 14804, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -285684,17 +211659,12 @@ }, { "id": 14805, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -285702,17 +211672,12 @@ }, { "id": 14806, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -285720,17 +211685,12 @@ }, { "id": 14807, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -285739,17 +211699,12 @@ }, { "id": 14808, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -285758,17 +211713,12 @@ }, { "id": 14809, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -285777,17 +211727,12 @@ }, { "id": 14810, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -285796,17 +211741,12 @@ }, { "id": 14811, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -285815,17 +211755,12 @@ }, { "id": 14812, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -285834,17 +211769,12 @@ }, { "id": 14813, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -285853,17 +211783,12 @@ }, { "id": 14814, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -285872,17 +211797,12 @@ }, { "id": 14815, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -285890,17 +211810,12 @@ }, { "id": 14816, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -285908,17 +211823,12 @@ }, { "id": 14817, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -285927,17 +211837,12 @@ }, { "id": 14818, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -285946,17 +211851,12 @@ }, { "id": 14819, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -285965,17 +211865,12 @@ }, { "id": 14820, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -285984,17 +211879,12 @@ }, { "id": 14821, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -286002,17 +211892,12 @@ }, { "id": 14822, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -286020,17 +211905,12 @@ }, { "id": 14823, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -286038,17 +211918,12 @@ }, { "id": 14824, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -286056,17 +211931,12 @@ }, { "id": 14825, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -286074,17 +211944,12 @@ }, { "id": 14826, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -286092,17 +211957,12 @@ }, { "id": 14827, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -286111,17 +211971,12 @@ }, { "id": 14828, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -286130,17 +211985,12 @@ }, { "id": 14829, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -286149,17 +211999,12 @@ }, { "id": 14830, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -286168,17 +212013,12 @@ }, { "id": 14831, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -286187,17 +212027,12 @@ }, { "id": 14832, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -286206,17 +212041,12 @@ }, { "id": 14833, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -286225,17 +212055,12 @@ }, { "id": 14834, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -286244,17 +212069,12 @@ }, { "id": 14835, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -286262,17 +212082,12 @@ }, { "id": 14836, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -286280,17 +212095,12 @@ }, { "id": 14837, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -286299,17 +212109,12 @@ }, { "id": 14838, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -286318,17 +212123,12 @@ }, { "id": 14839, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -286337,17 +212137,12 @@ }, { "id": 14840, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -286356,17 +212151,12 @@ }, { "id": 14841, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -286374,17 +212164,12 @@ }, { "id": 14842, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -286392,17 +212177,12 @@ }, { "id": 14843, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -286410,17 +212190,12 @@ }, { "id": 14844, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -286428,17 +212203,12 @@ }, { "id": 14845, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -286446,17 +212216,12 @@ }, { "id": 14846, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -286464,17 +212229,12 @@ }, { "id": 14847, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -286483,17 +212243,12 @@ }, { "id": 14848, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -286502,17 +212257,12 @@ }, { "id": 14849, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -286521,17 +212271,12 @@ }, { "id": 14850, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -286540,17 +212285,12 @@ }, { "id": 14851, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -286559,17 +212299,12 @@ }, { "id": 14852, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -286578,17 +212313,12 @@ }, { "id": 14853, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -286597,17 +212327,12 @@ }, { "id": 14854, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -286616,17 +212341,12 @@ }, { "id": 14855, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -286634,17 +212354,12 @@ }, { "id": 14856, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -286652,17 +212367,12 @@ }, { "id": 14857, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -286671,17 +212381,12 @@ }, { "id": 14858, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -286690,17 +212395,12 @@ }, { "id": 14859, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -286709,17 +212409,12 @@ }, { "id": 14860, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -286728,17 +212423,12 @@ }, { "id": 14861, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -286746,17 +212436,12 @@ }, { "id": 14862, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -286764,17 +212449,12 @@ }, { "id": 14863, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -286782,17 +212462,12 @@ }, { "id": 14864, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -286832,26 +212507,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14876, "states": [ { "id": 14865, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -286859,17 +212529,12 @@ }, { "id": 14866, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -286877,17 +212542,12 @@ }, { "id": 14867, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -286896,17 +212556,12 @@ }, { "id": 14868, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -286915,17 +212570,12 @@ }, { "id": 14869, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -286934,17 +212584,12 @@ }, { "id": 14870, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -286953,17 +212598,12 @@ }, { "id": 14871, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -286972,17 +212612,12 @@ }, { "id": 14872, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -286991,17 +212626,12 @@ }, { "id": 14873, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -287010,17 +212640,12 @@ }, { "id": 14874, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -287029,17 +212654,12 @@ }, { "id": 14875, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -287047,17 +212667,12 @@ }, { "id": 14876, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -287065,17 +212680,12 @@ }, { "id": 14877, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287084,17 +212694,12 @@ }, { "id": 14878, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287103,17 +212708,12 @@ }, { "id": 14879, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -287122,17 +212722,12 @@ }, { "id": 14880, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -287141,17 +212736,12 @@ }, { "id": 14881, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -287159,17 +212749,12 @@ }, { "id": 14882, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -287177,17 +212762,12 @@ }, { "id": 14883, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -287195,17 +212775,12 @@ }, { "id": 14884, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -287213,17 +212788,12 @@ }, { "id": 14885, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -287231,17 +212801,12 @@ }, { "id": 14886, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -287249,17 +212814,12 @@ }, { "id": 14887, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -287268,17 +212828,12 @@ }, { "id": 14888, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -287287,17 +212842,12 @@ }, { "id": 14889, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -287306,17 +212856,12 @@ }, { "id": 14890, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -287325,17 +212870,12 @@ }, { "id": 14891, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -287344,17 +212884,12 @@ }, { "id": 14892, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -287363,17 +212898,12 @@ }, { "id": 14893, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -287382,17 +212912,12 @@ }, { "id": 14894, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -287401,17 +212926,12 @@ }, { "id": 14895, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -287419,17 +212939,12 @@ }, { "id": 14896, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -287437,17 +212952,12 @@ }, { "id": 14897, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -287456,17 +212966,12 @@ }, { "id": 14898, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -287475,17 +212980,12 @@ }, { "id": 14899, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287494,17 +212994,12 @@ }, { "id": 14900, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287513,17 +213008,12 @@ }, { "id": 14901, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -287531,17 +213021,12 @@ }, { "id": 14902, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -287549,17 +213034,12 @@ }, { "id": 14903, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -287567,17 +213047,12 @@ }, { "id": 14904, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -287585,17 +213060,12 @@ }, { "id": 14905, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -287603,17 +213073,12 @@ }, { "id": 14906, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -287621,17 +213086,12 @@ }, { "id": 14907, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -287640,17 +213100,12 @@ }, { "id": 14908, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -287659,17 +213114,12 @@ }, { "id": 14909, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -287678,17 +213128,12 @@ }, { "id": 14910, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -287697,17 +213142,12 @@ }, { "id": 14911, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -287716,17 +213156,12 @@ }, { "id": 14912, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -287735,17 +213170,12 @@ }, { "id": 14913, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -287754,17 +213184,12 @@ }, { "id": 14914, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -287773,17 +213198,12 @@ }, { "id": 14915, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -287791,17 +213211,12 @@ }, { "id": 14916, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -287809,17 +213224,12 @@ }, { "id": 14917, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287828,17 +213238,12 @@ }, { "id": 14918, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287847,17 +213252,12 @@ }, { "id": 14919, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287866,17 +213266,12 @@ }, { "id": 14920, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -287885,17 +213280,12 @@ }, { "id": 14921, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -287903,17 +213293,12 @@ }, { "id": 14922, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -287921,17 +213306,12 @@ }, { "id": 14923, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -287939,17 +213319,12 @@ }, { "id": 14924, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -287957,17 +213332,12 @@ }, { "id": 14925, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -287975,17 +213345,12 @@ }, { "id": 14926, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -287993,17 +213358,12 @@ }, { "id": 14927, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -288012,17 +213372,12 @@ }, { "id": 14928, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -288031,17 +213386,12 @@ }, { "id": 14929, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -288050,17 +213400,12 @@ }, { "id": 14930, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -288069,17 +213414,12 @@ }, { "id": 14931, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -288088,17 +213428,12 @@ }, { "id": 14932, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -288107,17 +213442,12 @@ }, { "id": 14933, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -288126,17 +213456,12 @@ }, { "id": 14934, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -288145,17 +213470,12 @@ }, { "id": 14935, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -288163,17 +213483,12 @@ }, { "id": 14936, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -288181,17 +213496,12 @@ }, { "id": 14937, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -288200,17 +213510,12 @@ }, { "id": 14938, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -288219,17 +213524,12 @@ }, { "id": 14939, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -288238,17 +213538,12 @@ }, { "id": 14940, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -288257,17 +213552,12 @@ }, { "id": 14941, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -288275,17 +213565,12 @@ }, { "id": 14942, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -288293,17 +213578,12 @@ }, { "id": 14943, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -288311,17 +213591,12 @@ }, { "id": 14944, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -288361,26 +213636,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 14956, "states": [ { "id": 14945, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -288388,17 +213658,12 @@ }, { "id": 14946, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -288406,17 +213671,12 @@ }, { "id": 14947, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -288425,17 +213685,12 @@ }, { "id": 14948, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -288444,17 +213699,12 @@ }, { "id": 14949, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -288463,17 +213713,12 @@ }, { "id": 14950, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -288482,17 +213727,12 @@ }, { "id": 14951, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -288501,17 +213741,12 @@ }, { "id": 14952, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -288520,17 +213755,12 @@ }, { "id": 14953, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -288539,17 +213769,12 @@ }, { "id": 14954, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -288558,17 +213783,12 @@ }, { "id": 14955, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -288576,17 +213796,12 @@ }, { "id": 14956, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -288594,17 +213809,12 @@ }, { "id": 14957, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -288613,17 +213823,12 @@ }, { "id": 14958, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -288632,17 +213837,12 @@ }, { "id": 14959, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -288651,17 +213851,12 @@ }, { "id": 14960, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -288670,17 +213865,12 @@ }, { "id": 14961, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -288688,17 +213878,12 @@ }, { "id": 14962, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -288706,17 +213891,12 @@ }, { "id": 14963, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -288724,17 +213904,12 @@ }, { "id": 14964, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -288742,17 +213917,12 @@ }, { "id": 14965, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -288760,17 +213930,12 @@ }, { "id": 14966, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -288778,17 +213943,12 @@ }, { "id": 14967, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -288797,17 +213957,12 @@ }, { "id": 14968, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -288816,17 +213971,12 @@ }, { "id": 14969, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -288835,17 +213985,12 @@ }, { "id": 14970, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -288854,17 +213999,12 @@ }, { "id": 14971, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -288873,17 +214013,12 @@ }, { "id": 14972, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -288892,17 +214027,12 @@ }, { "id": 14973, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -288911,17 +214041,12 @@ }, { "id": 14974, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -288930,17 +214055,12 @@ }, { "id": 14975, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -288948,17 +214068,12 @@ }, { "id": 14976, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -288966,17 +214081,12 @@ }, { "id": 14977, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -288985,17 +214095,12 @@ }, { "id": 14978, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -289004,17 +214109,12 @@ }, { "id": 14979, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -289023,17 +214123,12 @@ }, { "id": 14980, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -289042,17 +214137,12 @@ }, { "id": 14981, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -289060,17 +214150,12 @@ }, { "id": 14982, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -289078,17 +214163,12 @@ }, { "id": 14983, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -289096,17 +214176,12 @@ }, { "id": 14984, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -289114,17 +214189,12 @@ }, { "id": 14985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -289132,17 +214202,12 @@ }, { "id": 14986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -289150,17 +214215,12 @@ }, { "id": 14987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -289169,17 +214229,12 @@ }, { "id": 14988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -289188,17 +214243,12 @@ }, { "id": 14989, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -289207,17 +214257,12 @@ }, { "id": 14990, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -289226,17 +214271,12 @@ }, { "id": 14991, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -289245,17 +214285,12 @@ }, { "id": 14992, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -289264,17 +214299,12 @@ }, { "id": 14993, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -289283,17 +214313,12 @@ }, { "id": 14994, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -289302,17 +214327,12 @@ }, { "id": 14995, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -289320,17 +214340,12 @@ }, { "id": 14996, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -289338,17 +214353,12 @@ }, { "id": 14997, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -289357,17 +214367,12 @@ }, { "id": 14998, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -289376,17 +214381,12 @@ }, { "id": 14999, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -289395,17 +214395,12 @@ }, { "id": 15000, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -289414,17 +214409,12 @@ }, { "id": 15001, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -289432,17 +214422,12 @@ }, { "id": 15002, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -289450,17 +214435,12 @@ }, { "id": 15003, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -289468,17 +214448,12 @@ }, { "id": 15004, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -289486,17 +214461,12 @@ }, { "id": 15005, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -289504,17 +214474,12 @@ }, { "id": 15006, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -289522,17 +214487,12 @@ }, { "id": 15007, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -289541,17 +214501,12 @@ }, { "id": 15008, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -289560,17 +214515,12 @@ }, { "id": 15009, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -289579,17 +214529,12 @@ }, { "id": 15010, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -289598,17 +214543,12 @@ }, { "id": 15011, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -289617,17 +214557,12 @@ }, { "id": 15012, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -289636,17 +214571,12 @@ }, { "id": 15013, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -289655,17 +214585,12 @@ }, { "id": 15014, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -289674,17 +214599,12 @@ }, { "id": 15015, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -289692,17 +214612,12 @@ }, { "id": 15016, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -289710,17 +214625,12 @@ }, { "id": 15017, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -289729,17 +214639,12 @@ }, { "id": 15018, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -289748,17 +214653,12 @@ }, { "id": 15019, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -289767,17 +214667,12 @@ }, { "id": 15020, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -289786,17 +214681,12 @@ }, { "id": 15021, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -289804,17 +214694,12 @@ }, { "id": 15022, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -289822,17 +214707,12 @@ }, { "id": 15023, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -289840,17 +214720,12 @@ }, { "id": 15024, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -289890,26 +214765,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 15036, "states": [ { "id": 15025, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -289917,17 +214787,12 @@ }, { "id": 15026, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -289935,17 +214800,12 @@ }, { "id": 15027, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -289954,17 +214814,12 @@ }, { "id": 15028, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -289973,17 +214828,12 @@ }, { "id": 15029, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -289992,17 +214842,12 @@ }, { "id": 15030, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -290011,17 +214856,12 @@ }, { "id": 15031, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -290030,17 +214870,12 @@ }, { "id": 15032, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -290049,17 +214884,12 @@ }, { "id": 15033, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -290068,17 +214898,12 @@ }, { "id": 15034, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -290087,17 +214912,12 @@ }, { "id": 15035, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -290105,17 +214925,12 @@ }, { "id": 15036, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -290123,17 +214938,12 @@ }, { "id": 15037, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290142,17 +214952,12 @@ }, { "id": 15038, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290161,17 +214966,12 @@ }, { "id": 15039, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -290180,17 +214980,12 @@ }, { "id": 15040, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -290199,17 +214994,12 @@ }, { "id": 15041, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -290217,17 +215007,12 @@ }, { "id": 15042, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -290235,17 +215020,12 @@ }, { "id": 15043, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -290253,17 +215033,12 @@ }, { "id": 15044, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -290271,17 +215046,12 @@ }, { "id": 15045, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -290289,17 +215059,12 @@ }, { "id": 15046, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -290307,17 +215072,12 @@ }, { "id": 15047, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -290326,17 +215086,12 @@ }, { "id": 15048, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -290345,17 +215100,12 @@ }, { "id": 15049, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -290364,17 +215114,12 @@ }, { "id": 15050, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -290383,17 +215128,12 @@ }, { "id": 15051, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -290402,17 +215142,12 @@ }, { "id": 15052, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -290421,17 +215156,12 @@ }, { "id": 15053, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -290440,17 +215170,12 @@ }, { "id": 15054, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -290459,17 +215184,12 @@ }, { "id": 15055, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -290477,17 +215197,12 @@ }, { "id": 15056, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -290495,17 +215210,12 @@ }, { "id": 15057, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -290514,17 +215224,12 @@ }, { "id": 15058, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -290533,17 +215238,12 @@ }, { "id": 15059, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290552,17 +215252,12 @@ }, { "id": 15060, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290571,17 +215266,12 @@ }, { "id": 15061, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -290589,17 +215279,12 @@ }, { "id": 15062, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -290607,17 +215292,12 @@ }, { "id": 15063, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -290625,17 +215305,12 @@ }, { "id": 15064, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -290643,17 +215318,12 @@ }, { "id": 15065, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -290661,17 +215331,12 @@ }, { "id": 15066, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -290679,17 +215344,12 @@ }, { "id": 15067, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -290698,17 +215358,12 @@ }, { "id": 15068, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -290717,17 +215372,12 @@ }, { "id": 15069, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -290736,17 +215386,12 @@ }, { "id": 15070, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -290755,17 +215400,12 @@ }, { "id": 15071, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -290774,17 +215414,12 @@ }, { "id": 15072, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -290793,17 +215428,12 @@ }, { "id": 15073, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -290812,17 +215442,12 @@ }, { "id": 15074, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -290831,17 +215456,12 @@ }, { "id": 15075, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -290849,17 +215469,12 @@ }, { "id": 15076, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -290867,17 +215482,12 @@ }, { "id": 15077, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290886,17 +215496,12 @@ }, { "id": 15078, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290905,17 +215510,12 @@ }, { "id": 15079, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290924,17 +215524,12 @@ }, { "id": 15080, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -290943,17 +215538,12 @@ }, { "id": 15081, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -290961,17 +215551,12 @@ }, { "id": 15082, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -290979,17 +215564,12 @@ }, { "id": 15083, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -290997,17 +215577,12 @@ }, { "id": 15084, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -291015,17 +215590,12 @@ }, { "id": 15085, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -291033,17 +215603,12 @@ }, { "id": 15086, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -291051,17 +215616,12 @@ }, { "id": 15087, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -291070,17 +215630,12 @@ }, { "id": 15088, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -291089,17 +215644,12 @@ }, { "id": 15089, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -291108,17 +215658,12 @@ }, { "id": 15090, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -291127,17 +215672,12 @@ }, { "id": 15091, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -291146,17 +215686,12 @@ }, { "id": 15092, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -291165,17 +215700,12 @@ }, { "id": 15093, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -291184,17 +215714,12 @@ }, { "id": 15094, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -291203,17 +215728,12 @@ }, { "id": 15095, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -291221,17 +215741,12 @@ }, { "id": 15096, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -291239,17 +215754,12 @@ }, { "id": 15097, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -291258,17 +215768,12 @@ }, { "id": 15098, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -291277,17 +215782,12 @@ }, { "id": 15099, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -291296,17 +215796,12 @@ }, { "id": 15100, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -291315,17 +215810,12 @@ }, { "id": 15101, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -291333,17 +215823,12 @@ }, { "id": 15102, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -291351,17 +215836,12 @@ }, { "id": 15103, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -291369,17 +215849,12 @@ }, { "id": 15104, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -291433,109 +215908,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15108, "states": [ { "id": 15105, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15106, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15107, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15108, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15109, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15110, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -291588,109 +216033,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15114, "states": [ { "id": 15111, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15112, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15113, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15114, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15115, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15116, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -291743,109 +216158,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15120, "states": [ { "id": 15117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15121, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15122, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -291898,109 +216283,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15126, "states": [ { "id": 15123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15127, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15128, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292053,109 +216408,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15132, "states": [ { "id": 15129, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15130, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15131, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15132, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15133, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15134, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292208,109 +216533,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15138, "states": [ { "id": 15135, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15136, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15137, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15138, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15139, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15140, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292363,109 +216658,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15144, "states": [ { "id": 15141, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15142, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15143, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15144, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15145, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15146, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292518,109 +216783,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15150, "states": [ { "id": 15147, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15148, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15149, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15150, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15151, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15152, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292673,109 +216908,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15156, "states": [ { "id": 15153, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15154, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15155, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15156, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15157, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15158, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292828,109 +217033,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15162, "states": [ { "id": 15159, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15160, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15161, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15162, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15163, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15164, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -292983,109 +217158,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15168, "states": [ { "id": 15165, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15166, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15167, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15168, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15169, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15170, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -293138,109 +217283,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15174, "states": [ { "id": 15171, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15172, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15173, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15174, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15175, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15176, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -293293,109 +217408,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 15180, "states": [ { "id": 15177, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15178, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 15179, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15180, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 15181, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 15182, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -293434,45 +217519,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 15186, "states": [ { "id": 15183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 15184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293481,17 +217556,12 @@ }, { "id": 15185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293500,34 +217570,24 @@ }, { "id": 15186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 15187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293536,17 +217596,12 @@ }, { "id": 15188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293555,115 +217610,80 @@ }, { "id": 15189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 15190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 15193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -293671,17 +217691,12 @@ }, { "id": 15196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293691,17 +217706,12 @@ }, { "id": 15197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293711,17 +217721,12 @@ }, { "id": 15198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -293729,17 +217734,12 @@ }, { "id": 15199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293749,17 +217749,12 @@ }, { "id": 15200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293769,34 +217764,24 @@ }, { "id": 15201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -293804,17 +217789,12 @@ }, { "id": 15203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -293822,34 +217802,24 @@ }, { "id": 15204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -293857,17 +217827,12 @@ }, { "id": 15206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -293875,17 +217840,12 @@ }, { "id": 15207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -293893,17 +217853,12 @@ }, { "id": 15208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293913,17 +217868,12 @@ }, { "id": 15209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293933,17 +217883,12 @@ }, { "id": 15210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -293951,17 +217896,12 @@ }, { "id": 15211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293971,17 +217911,12 @@ }, { "id": 15212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -293991,34 +217926,24 @@ }, { "id": 15213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -294026,17 +217951,12 @@ }, { "id": 15215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -294044,34 +217964,24 @@ }, { "id": 15216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -294079,17 +217989,12 @@ }, { "id": 15218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -294097,17 +218002,12 @@ }, { "id": 15219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -294115,17 +218015,12 @@ }, { "id": 15220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294135,17 +218030,12 @@ }, { "id": 15221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294155,17 +218045,12 @@ }, { "id": 15222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -294173,17 +218058,12 @@ }, { "id": 15223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294193,17 +218073,12 @@ }, { "id": 15224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294213,34 +218088,24 @@ }, { "id": 15225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294248,17 +218113,12 @@ }, { "id": 15227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294266,34 +218126,24 @@ }, { "id": 15228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294301,17 +218151,12 @@ }, { "id": 15230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294319,17 +218164,12 @@ }, { "id": 15231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -294338,17 +218178,12 @@ }, { "id": 15232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294359,17 +218194,12 @@ }, { "id": 15233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294380,17 +218210,12 @@ }, { "id": 15234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -294399,17 +218224,12 @@ }, { "id": 15235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294420,17 +218240,12 @@ }, { "id": 15236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294441,34 +218256,24 @@ }, { "id": 15237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294477,17 +218282,12 @@ }, { "id": 15239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294496,34 +218296,24 @@ }, { "id": 15240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294532,17 +218322,12 @@ }, { "id": 15242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294551,17 +218336,12 @@ }, { "id": 15243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -294570,17 +218350,12 @@ }, { "id": 15244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294591,17 +218366,12 @@ }, { "id": 15245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294612,17 +218382,12 @@ }, { "id": 15246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -294631,17 +218396,12 @@ }, { "id": 15247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294652,17 +218412,12 @@ }, { "id": 15248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294673,34 +218428,24 @@ }, { "id": 15249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294709,17 +218454,12 @@ }, { "id": 15251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294728,34 +218468,24 @@ }, { "id": 15252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294764,17 +218494,12 @@ }, { "id": 15254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -294783,17 +218508,12 @@ }, { "id": 15255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -294801,17 +218521,12 @@ }, { "id": 15256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294821,17 +218536,12 @@ }, { "id": 15257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294841,17 +218551,12 @@ }, { "id": 15258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -294859,17 +218564,12 @@ }, { "id": 15259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294879,17 +218579,12 @@ }, { "id": 15260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -294899,34 +218594,24 @@ }, { "id": 15261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294934,17 +218619,12 @@ }, { "id": 15263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294952,34 +218632,24 @@ }, { "id": 15264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -294987,17 +218657,12 @@ }, { "id": 15266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -295005,17 +218670,12 @@ }, { "id": 15267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -295024,17 +218684,12 @@ }, { "id": 15268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295045,17 +218700,12 @@ }, { "id": 15269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295066,17 +218716,12 @@ }, { "id": 15270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -295085,17 +218730,12 @@ }, { "id": 15271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295106,17 +218746,12 @@ }, { "id": 15272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295127,34 +218762,24 @@ }, { "id": 15273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295163,17 +218788,12 @@ }, { "id": 15275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295182,34 +218802,24 @@ }, { "id": 15276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295218,17 +218828,12 @@ }, { "id": 15278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295237,17 +218842,12 @@ }, { "id": 15279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -295256,17 +218856,12 @@ }, { "id": 15280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295277,17 +218872,12 @@ }, { "id": 15281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295298,17 +218888,12 @@ }, { "id": 15282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -295317,17 +218902,12 @@ }, { "id": 15283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295338,17 +218918,12 @@ }, { "id": 15284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -295359,34 +218934,24 @@ }, { "id": 15285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295395,17 +218960,12 @@ }, { "id": 15287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295414,34 +218974,24 @@ }, { "id": 15288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295450,17 +219000,12 @@ }, { "id": 15290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -295469,17 +219014,12 @@ }, { "id": 15291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -295487,17 +219027,12 @@ }, { "id": 15292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295506,17 +219041,12 @@ }, { "id": 15293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295525,17 +219055,12 @@ }, { "id": 15294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -295543,17 +219068,12 @@ }, { "id": 15295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295562,17 +219082,12 @@ }, { "id": 15296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295581,119 +219096,84 @@ }, { "id": 15297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -295702,17 +219182,12 @@ }, { "id": 15304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295722,17 +219197,12 @@ }, { "id": 15305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295742,17 +219212,12 @@ }, { "id": 15306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -295761,17 +219226,12 @@ }, { "id": 15307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295781,17 +219241,12 @@ }, { "id": 15308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295801,17 +219256,12 @@ }, { "id": 15309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -295819,17 +219269,12 @@ }, { "id": 15310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -295837,17 +219282,12 @@ }, { "id": 15311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -295855,17 +219295,12 @@ }, { "id": 15312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -295873,17 +219308,12 @@ }, { "id": 15313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -295891,17 +219321,12 @@ }, { "id": 15314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -295909,17 +219334,12 @@ }, { "id": 15315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -295928,17 +219348,12 @@ }, { "id": 15316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295948,17 +219363,12 @@ }, { "id": 15317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -295968,17 +219378,12 @@ }, { "id": 15318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -295987,17 +219392,12 @@ }, { "id": 15319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296007,17 +219407,12 @@ }, { "id": 15320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296027,17 +219422,12 @@ }, { "id": 15321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -296045,17 +219435,12 @@ }, { "id": 15322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -296063,17 +219448,12 @@ }, { "id": 15323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -296081,17 +219461,12 @@ }, { "id": 15324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -296099,17 +219474,12 @@ }, { "id": 15325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -296117,17 +219487,12 @@ }, { "id": 15326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -296135,17 +219500,12 @@ }, { "id": 15327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296154,17 +219514,12 @@ }, { "id": 15328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296174,17 +219529,12 @@ }, { "id": 15329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296194,17 +219544,12 @@ }, { "id": 15330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296213,17 +219558,12 @@ }, { "id": 15331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296233,17 +219573,12 @@ }, { "id": 15332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296253,17 +219588,12 @@ }, { "id": 15333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -296271,17 +219601,12 @@ }, { "id": 15334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -296289,17 +219614,12 @@ }, { "id": 15335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -296307,17 +219627,12 @@ }, { "id": 15336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -296325,17 +219640,12 @@ }, { "id": 15337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -296343,17 +219653,12 @@ }, { "id": 15338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -296361,17 +219666,12 @@ }, { "id": 15339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296381,17 +219681,12 @@ }, { "id": 15340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296402,17 +219697,12 @@ }, { "id": 15341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296423,17 +219713,12 @@ }, { "id": 15342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296443,17 +219728,12 @@ }, { "id": 15343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296464,17 +219744,12 @@ }, { "id": 15344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296485,17 +219760,12 @@ }, { "id": 15345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -296503,17 +219773,12 @@ }, { "id": 15346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296522,17 +219787,12 @@ }, { "id": 15347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296541,17 +219801,12 @@ }, { "id": 15348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -296559,17 +219814,12 @@ }, { "id": 15349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296578,17 +219828,12 @@ }, { "id": 15350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296597,17 +219842,12 @@ }, { "id": 15351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296617,17 +219857,12 @@ }, { "id": 15352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296638,17 +219873,12 @@ }, { "id": 15353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296659,17 +219889,12 @@ }, { "id": 15354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296679,17 +219904,12 @@ }, { "id": 15355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296700,17 +219920,12 @@ }, { "id": 15356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296721,17 +219936,12 @@ }, { "id": 15357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -296739,17 +219949,12 @@ }, { "id": 15358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296758,17 +219963,12 @@ }, { "id": 15359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296777,17 +219977,12 @@ }, { "id": 15360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -296795,17 +219990,12 @@ }, { "id": 15361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296814,17 +220004,12 @@ }, { "id": 15362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -296833,17 +220018,12 @@ }, { "id": 15363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296852,17 +220032,12 @@ }, { "id": 15364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296872,17 +220047,12 @@ }, { "id": 15365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296892,17 +220062,12 @@ }, { "id": 15366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -296911,17 +220076,12 @@ }, { "id": 15367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296931,17 +220091,12 @@ }, { "id": 15368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -296951,17 +220106,12 @@ }, { "id": 15369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -296969,17 +220119,12 @@ }, { "id": 15370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -296987,17 +220132,12 @@ }, { "id": 15371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -297005,17 +220145,12 @@ }, { "id": 15372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -297023,17 +220158,12 @@ }, { "id": 15373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -297041,17 +220171,12 @@ }, { "id": 15374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -297059,17 +220184,12 @@ }, { "id": 15375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -297079,17 +220199,12 @@ }, { "id": 15376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297100,17 +220215,12 @@ }, { "id": 15377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297121,17 +220231,12 @@ }, { "id": 15378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -297141,17 +220246,12 @@ }, { "id": 15379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297162,17 +220262,12 @@ }, { "id": 15380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297183,17 +220278,12 @@ }, { "id": 15381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -297201,17 +220291,12 @@ }, { "id": 15382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297220,17 +220305,12 @@ }, { "id": 15383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297239,17 +220319,12 @@ }, { "id": 15384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -297257,17 +220332,12 @@ }, { "id": 15385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297276,17 +220346,12 @@ }, { "id": 15386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297295,17 +220360,12 @@ }, { "id": 15387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -297315,17 +220375,12 @@ }, { "id": 15388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297336,17 +220391,12 @@ }, { "id": 15389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297357,17 +220407,12 @@ }, { "id": 15390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -297377,17 +220422,12 @@ }, { "id": 15391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297398,17 +220438,12 @@ }, { "id": 15392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297419,17 +220454,12 @@ }, { "id": 15393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -297437,17 +220467,12 @@ }, { "id": 15394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297456,17 +220481,12 @@ }, { "id": 15395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297475,17 +220495,12 @@ }, { "id": 15396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -297493,17 +220508,12 @@ }, { "id": 15397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297512,17 +220522,12 @@ }, { "id": 15398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -297531,17 +220536,12 @@ }, { "id": 15399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -297549,17 +220549,12 @@ }, { "id": 15400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297568,17 +220563,12 @@ }, { "id": 15401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297587,17 +220577,12 @@ }, { "id": 15402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -297605,17 +220590,12 @@ }, { "id": 15403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297624,17 +220604,12 @@ }, { "id": 15404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297643,119 +220618,84 @@ }, { "id": 15405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -297764,17 +220704,12 @@ }, { "id": 15412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297784,17 +220719,12 @@ }, { "id": 15413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297804,17 +220734,12 @@ }, { "id": 15414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -297823,17 +220748,12 @@ }, { "id": 15415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297843,17 +220763,12 @@ }, { "id": 15416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -297863,17 +220778,12 @@ }, { "id": 15417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -297881,17 +220791,12 @@ }, { "id": 15418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -297899,17 +220804,12 @@ }, { "id": 15419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -297917,17 +220817,12 @@ }, { "id": 15420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -297935,17 +220830,12 @@ }, { "id": 15421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -297953,17 +220843,12 @@ }, { "id": 15422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -297971,17 +220856,12 @@ }, { "id": 15423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -297990,17 +220870,12 @@ }, { "id": 15424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298010,17 +220885,12 @@ }, { "id": 15425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298030,17 +220900,12 @@ }, { "id": 15426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -298049,17 +220914,12 @@ }, { "id": 15427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298069,17 +220929,12 @@ }, { "id": 15428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298089,17 +220944,12 @@ }, { "id": 15429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -298107,17 +220957,12 @@ }, { "id": 15430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -298125,17 +220970,12 @@ }, { "id": 15431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -298143,17 +220983,12 @@ }, { "id": 15432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -298161,17 +220996,12 @@ }, { "id": 15433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -298179,17 +221009,12 @@ }, { "id": 15434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -298197,17 +221022,12 @@ }, { "id": 15435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298216,17 +221036,12 @@ }, { "id": 15436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298236,17 +221051,12 @@ }, { "id": 15437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298256,17 +221066,12 @@ }, { "id": 15438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298275,17 +221080,12 @@ }, { "id": 15439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298295,17 +221095,12 @@ }, { "id": 15440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298315,17 +221110,12 @@ }, { "id": 15441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -298333,17 +221123,12 @@ }, { "id": 15442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -298351,17 +221136,12 @@ }, { "id": 15443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -298369,17 +221149,12 @@ }, { "id": 15444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -298387,17 +221162,12 @@ }, { "id": 15445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -298405,17 +221175,12 @@ }, { "id": 15446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -298423,17 +221188,12 @@ }, { "id": 15447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298443,17 +221203,12 @@ }, { "id": 15448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298464,17 +221219,12 @@ }, { "id": 15449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298485,17 +221235,12 @@ }, { "id": 15450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298505,17 +221250,12 @@ }, { "id": 15451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298526,17 +221266,12 @@ }, { "id": 15452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298547,17 +221282,12 @@ }, { "id": 15453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -298565,17 +221295,12 @@ }, { "id": 15454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298584,17 +221309,12 @@ }, { "id": 15455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298603,17 +221323,12 @@ }, { "id": 15456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -298621,17 +221336,12 @@ }, { "id": 15457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298640,17 +221350,12 @@ }, { "id": 15458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298659,17 +221364,12 @@ }, { "id": 15459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298679,17 +221379,12 @@ }, { "id": 15460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298700,17 +221395,12 @@ }, { "id": 15461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298721,17 +221411,12 @@ }, { "id": 15462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298741,17 +221426,12 @@ }, { "id": 15463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298762,17 +221442,12 @@ }, { "id": 15464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298783,17 +221458,12 @@ }, { "id": 15465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -298801,17 +221471,12 @@ }, { "id": 15466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298820,17 +221485,12 @@ }, { "id": 15467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298839,17 +221499,12 @@ }, { "id": 15468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -298857,17 +221512,12 @@ }, { "id": 15469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298876,17 +221526,12 @@ }, { "id": 15470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -298895,17 +221540,12 @@ }, { "id": 15471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298914,17 +221554,12 @@ }, { "id": 15472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298934,17 +221569,12 @@ }, { "id": 15473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298954,17 +221584,12 @@ }, { "id": 15474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -298973,17 +221598,12 @@ }, { "id": 15475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -298993,17 +221613,12 @@ }, { "id": 15476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299013,17 +221628,12 @@ }, { "id": 15477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -299031,17 +221641,12 @@ }, { "id": 15478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -299049,17 +221654,12 @@ }, { "id": 15479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -299067,17 +221667,12 @@ }, { "id": 15480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -299085,17 +221680,12 @@ }, { "id": 15481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -299103,17 +221693,12 @@ }, { "id": 15482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -299121,17 +221706,12 @@ }, { "id": 15483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -299141,17 +221721,12 @@ }, { "id": 15484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299162,17 +221737,12 @@ }, { "id": 15485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299183,17 +221753,12 @@ }, { "id": 15486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -299203,17 +221768,12 @@ }, { "id": 15487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299224,17 +221784,12 @@ }, { "id": 15488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299245,17 +221800,12 @@ }, { "id": 15489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -299263,17 +221813,12 @@ }, { "id": 15490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299282,17 +221827,12 @@ }, { "id": 15491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299301,17 +221841,12 @@ }, { "id": 15492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -299319,17 +221854,12 @@ }, { "id": 15493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299338,17 +221868,12 @@ }, { "id": 15494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299357,17 +221882,12 @@ }, { "id": 15495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -299377,17 +221897,12 @@ }, { "id": 15496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299398,17 +221913,12 @@ }, { "id": 15497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299419,17 +221929,12 @@ }, { "id": 15498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -299439,17 +221944,12 @@ }, { "id": 15499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299460,17 +221960,12 @@ }, { "id": 15500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -299481,17 +221976,12 @@ }, { "id": 15501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -299499,17 +221989,12 @@ }, { "id": 15502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299518,17 +222003,12 @@ }, { "id": 15503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299537,17 +222017,12 @@ }, { "id": 15504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -299555,17 +222030,12 @@ }, { "id": 15505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299574,17 +222044,12 @@ }, { "id": 15506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -299625,45 +222090,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 15510, "states": [ { "id": 15507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 15508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299672,17 +222127,12 @@ }, { "id": 15509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299691,34 +222141,24 @@ }, { "id": 15510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 15511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299727,17 +222167,12 @@ }, { "id": 15512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299746,115 +222181,80 @@ }, { "id": 15513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 15514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 15517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -299862,17 +222262,12 @@ }, { "id": 15520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299882,17 +222277,12 @@ }, { "id": 15521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299902,17 +222292,12 @@ }, { "id": 15522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -299920,17 +222305,12 @@ }, { "id": 15523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299940,17 +222320,12 @@ }, { "id": 15524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -299960,34 +222335,24 @@ }, { "id": 15525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -299995,17 +222360,12 @@ }, { "id": 15527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300013,34 +222373,24 @@ }, { "id": 15528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300048,17 +222398,12 @@ }, { "id": 15530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300066,17 +222411,12 @@ }, { "id": 15531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -300084,17 +222424,12 @@ }, { "id": 15532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300104,17 +222439,12 @@ }, { "id": 15533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300124,17 +222454,12 @@ }, { "id": 15534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -300142,17 +222467,12 @@ }, { "id": 15535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300162,17 +222482,12 @@ }, { "id": 15536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300182,34 +222497,24 @@ }, { "id": 15537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300217,17 +222522,12 @@ }, { "id": 15539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300235,34 +222535,24 @@ }, { "id": 15540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300270,17 +222560,12 @@ }, { "id": 15542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -300288,17 +222573,12 @@ }, { "id": 15543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -300306,17 +222586,12 @@ }, { "id": 15544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300326,17 +222601,12 @@ }, { "id": 15545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300346,17 +222616,12 @@ }, { "id": 15546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -300364,17 +222629,12 @@ }, { "id": 15547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300384,17 +222644,12 @@ }, { "id": 15548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300404,34 +222659,24 @@ }, { "id": 15549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -300439,17 +222684,12 @@ }, { "id": 15551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -300457,34 +222697,24 @@ }, { "id": 15552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -300492,17 +222722,12 @@ }, { "id": 15554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -300510,17 +222735,12 @@ }, { "id": 15555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -300529,17 +222749,12 @@ }, { "id": 15556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300550,17 +222765,12 @@ }, { "id": 15557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300571,17 +222781,12 @@ }, { "id": 15558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -300590,17 +222795,12 @@ }, { "id": 15559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300611,17 +222811,12 @@ }, { "id": 15560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300632,34 +222827,24 @@ }, { "id": 15561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300668,17 +222853,12 @@ }, { "id": 15563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300687,34 +222867,24 @@ }, { "id": 15564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300723,17 +222893,12 @@ }, { "id": 15566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300742,17 +222907,12 @@ }, { "id": 15567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -300761,17 +222921,12 @@ }, { "id": 15568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300782,17 +222937,12 @@ }, { "id": 15569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300803,17 +222953,12 @@ }, { "id": 15570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -300822,17 +222967,12 @@ }, { "id": 15571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300843,17 +222983,12 @@ }, { "id": 15572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -300864,34 +222999,24 @@ }, { "id": 15573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300900,17 +223025,12 @@ }, { "id": 15575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300919,34 +223039,24 @@ }, { "id": 15576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300955,17 +223065,12 @@ }, { "id": 15578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -300974,17 +223079,12 @@ }, { "id": 15579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -300992,17 +223092,12 @@ }, { "id": 15580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301012,17 +223107,12 @@ }, { "id": 15581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301032,17 +223122,12 @@ }, { "id": 15582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -301050,17 +223135,12 @@ }, { "id": 15583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301070,17 +223150,12 @@ }, { "id": 15584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301090,34 +223165,24 @@ }, { "id": 15585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -301125,17 +223190,12 @@ }, { "id": 15587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -301143,34 +223203,24 @@ }, { "id": 15588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -301178,17 +223228,12 @@ }, { "id": 15590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -301196,17 +223241,12 @@ }, { "id": 15591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -301215,17 +223255,12 @@ }, { "id": 15592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301236,17 +223271,12 @@ }, { "id": 15593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301257,17 +223287,12 @@ }, { "id": 15594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -301276,17 +223301,12 @@ }, { "id": 15595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301297,17 +223317,12 @@ }, { "id": 15596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301318,34 +223333,24 @@ }, { "id": 15597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301354,17 +223359,12 @@ }, { "id": 15599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301373,34 +223373,24 @@ }, { "id": 15600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301409,17 +223399,12 @@ }, { "id": 15602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301428,17 +223413,12 @@ }, { "id": 15603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -301447,17 +223427,12 @@ }, { "id": 15604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301468,17 +223443,12 @@ }, { "id": 15605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301489,17 +223459,12 @@ }, { "id": 15606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -301508,17 +223473,12 @@ }, { "id": 15607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301529,17 +223489,12 @@ }, { "id": 15608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -301550,34 +223505,24 @@ }, { "id": 15609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301586,17 +223531,12 @@ }, { "id": 15611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301605,34 +223545,24 @@ }, { "id": 15612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301641,17 +223571,12 @@ }, { "id": 15614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -301660,17 +223585,12 @@ }, { "id": 15615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -301678,17 +223598,12 @@ }, { "id": 15616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301697,17 +223612,12 @@ }, { "id": 15617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301716,17 +223626,12 @@ }, { "id": 15618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -301734,17 +223639,12 @@ }, { "id": 15619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301753,17 +223653,12 @@ }, { "id": 15620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301772,119 +223667,84 @@ }, { "id": 15621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -301893,17 +223753,12 @@ }, { "id": 15628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301913,17 +223768,12 @@ }, { "id": 15629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301933,17 +223783,12 @@ }, { "id": 15630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -301952,17 +223797,12 @@ }, { "id": 15631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301972,17 +223812,12 @@ }, { "id": 15632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -301992,17 +223827,12 @@ }, { "id": 15633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -302010,17 +223840,12 @@ }, { "id": 15634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302028,17 +223853,12 @@ }, { "id": 15635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302046,17 +223866,12 @@ }, { "id": 15636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -302064,17 +223879,12 @@ }, { "id": 15637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302082,17 +223892,12 @@ }, { "id": 15638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302100,17 +223905,12 @@ }, { "id": 15639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -302119,17 +223919,12 @@ }, { "id": 15640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302139,17 +223934,12 @@ }, { "id": 15641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302159,17 +223949,12 @@ }, { "id": 15642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -302178,17 +223963,12 @@ }, { "id": 15643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302198,17 +223978,12 @@ }, { "id": 15644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302218,17 +223993,12 @@ }, { "id": 15645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -302236,17 +224006,12 @@ }, { "id": 15646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302254,17 +224019,12 @@ }, { "id": 15647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302272,17 +224032,12 @@ }, { "id": 15648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -302290,17 +224045,12 @@ }, { "id": 15649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302308,17 +224058,12 @@ }, { "id": 15650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -302326,17 +224071,12 @@ }, { "id": 15651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -302345,17 +224085,12 @@ }, { "id": 15652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302365,17 +224100,12 @@ }, { "id": 15653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302385,17 +224115,12 @@ }, { "id": 15654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -302404,17 +224129,12 @@ }, { "id": 15655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302424,17 +224144,12 @@ }, { "id": 15656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302444,17 +224159,12 @@ }, { "id": 15657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -302462,17 +224172,12 @@ }, { "id": 15658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -302480,17 +224185,12 @@ }, { "id": 15659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -302498,17 +224198,12 @@ }, { "id": 15660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -302516,17 +224211,12 @@ }, { "id": 15661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -302534,17 +224224,12 @@ }, { "id": 15662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -302552,17 +224237,12 @@ }, { "id": 15663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -302572,17 +224252,12 @@ }, { "id": 15664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302593,17 +224268,12 @@ }, { "id": 15665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302614,17 +224284,12 @@ }, { "id": 15666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -302634,17 +224299,12 @@ }, { "id": 15667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302655,17 +224315,12 @@ }, { "id": 15668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302676,17 +224331,12 @@ }, { "id": 15669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -302694,17 +224344,12 @@ }, { "id": 15670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -302713,17 +224358,12 @@ }, { "id": 15671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -302732,17 +224372,12 @@ }, { "id": 15672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -302750,17 +224385,12 @@ }, { "id": 15673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -302769,17 +224399,12 @@ }, { "id": 15674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -302788,17 +224413,12 @@ }, { "id": 15675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -302808,17 +224428,12 @@ }, { "id": 15676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302829,17 +224444,12 @@ }, { "id": 15677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302850,17 +224460,12 @@ }, { "id": 15678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -302870,17 +224475,12 @@ }, { "id": 15679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302891,17 +224491,12 @@ }, { "id": 15680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -302912,17 +224507,12 @@ }, { "id": 15681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -302930,17 +224520,12 @@ }, { "id": 15682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -302949,17 +224534,12 @@ }, { "id": 15683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -302968,17 +224548,12 @@ }, { "id": 15684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -302986,17 +224561,12 @@ }, { "id": 15685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303005,17 +224575,12 @@ }, { "id": 15686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303024,17 +224589,12 @@ }, { "id": 15687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -303043,17 +224603,12 @@ }, { "id": 15688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303063,17 +224618,12 @@ }, { "id": 15689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303083,17 +224633,12 @@ }, { "id": 15690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -303102,17 +224647,12 @@ }, { "id": 15691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303122,17 +224662,12 @@ }, { "id": 15692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303142,17 +224677,12 @@ }, { "id": 15693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -303160,17 +224690,12 @@ }, { "id": 15694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -303178,17 +224703,12 @@ }, { "id": 15695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -303196,17 +224716,12 @@ }, { "id": 15696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -303214,17 +224729,12 @@ }, { "id": 15697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -303232,17 +224742,12 @@ }, { "id": 15698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -303250,17 +224755,12 @@ }, { "id": 15699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -303270,17 +224770,12 @@ }, { "id": 15700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303291,17 +224786,12 @@ }, { "id": 15701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303312,17 +224802,12 @@ }, { "id": 15702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -303332,17 +224817,12 @@ }, { "id": 15703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303353,17 +224833,12 @@ }, { "id": 15704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303374,17 +224849,12 @@ }, { "id": 15705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -303392,17 +224862,12 @@ }, { "id": 15706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303411,17 +224876,12 @@ }, { "id": 15707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303430,17 +224890,12 @@ }, { "id": 15708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -303448,17 +224903,12 @@ }, { "id": 15709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303467,17 +224917,12 @@ }, { "id": 15710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303486,17 +224931,12 @@ }, { "id": 15711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -303506,17 +224946,12 @@ }, { "id": 15712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303527,17 +224962,12 @@ }, { "id": 15713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303548,17 +224978,12 @@ }, { "id": 15714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -303568,17 +224993,12 @@ }, { "id": 15715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303589,17 +225009,12 @@ }, { "id": 15716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303610,17 +225025,12 @@ }, { "id": 15717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -303628,17 +225038,12 @@ }, { "id": 15718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303647,17 +225052,12 @@ }, { "id": 15719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303666,17 +225066,12 @@ }, { "id": 15720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -303684,17 +225079,12 @@ }, { "id": 15721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303703,17 +225093,12 @@ }, { "id": 15722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -303722,17 +225107,12 @@ }, { "id": 15723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -303740,17 +225120,12 @@ }, { "id": 15724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303759,17 +225134,12 @@ }, { "id": 15725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303778,17 +225148,12 @@ }, { "id": 15726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -303796,17 +225161,12 @@ }, { "id": 15727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303815,17 +225175,12 @@ }, { "id": 15728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303834,119 +225189,84 @@ }, { "id": 15729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -303955,17 +225275,12 @@ }, { "id": 15736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303975,17 +225290,12 @@ }, { "id": 15737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -303995,17 +225305,12 @@ }, { "id": 15738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -304014,17 +225319,12 @@ }, { "id": 15739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304034,17 +225334,12 @@ }, { "id": 15740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304054,17 +225349,12 @@ }, { "id": 15741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -304072,17 +225362,12 @@ }, { "id": 15742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304090,17 +225375,12 @@ }, { "id": 15743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304108,17 +225388,12 @@ }, { "id": 15744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -304126,17 +225401,12 @@ }, { "id": 15745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304144,17 +225414,12 @@ }, { "id": 15746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304162,17 +225427,12 @@ }, { "id": 15747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -304181,17 +225441,12 @@ }, { "id": 15748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304201,17 +225456,12 @@ }, { "id": 15749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304221,17 +225471,12 @@ }, { "id": 15750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -304240,17 +225485,12 @@ }, { "id": 15751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304260,17 +225500,12 @@ }, { "id": 15752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304280,17 +225515,12 @@ }, { "id": 15753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -304298,17 +225528,12 @@ }, { "id": 15754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304316,17 +225541,12 @@ }, { "id": 15755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304334,17 +225554,12 @@ }, { "id": 15756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -304352,17 +225567,12 @@ }, { "id": 15757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304370,17 +225580,12 @@ }, { "id": 15758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -304388,17 +225593,12 @@ }, { "id": 15759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -304407,17 +225607,12 @@ }, { "id": 15760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304427,17 +225622,12 @@ }, { "id": 15761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304447,17 +225637,12 @@ }, { "id": 15762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -304466,17 +225651,12 @@ }, { "id": 15763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304486,17 +225666,12 @@ }, { "id": 15764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304506,17 +225681,12 @@ }, { "id": 15765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -304524,17 +225694,12 @@ }, { "id": 15766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -304542,17 +225707,12 @@ }, { "id": 15767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -304560,17 +225720,12 @@ }, { "id": 15768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -304578,17 +225733,12 @@ }, { "id": 15769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -304596,17 +225746,12 @@ }, { "id": 15770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -304614,17 +225759,12 @@ }, { "id": 15771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -304634,17 +225774,12 @@ }, { "id": 15772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304655,17 +225790,12 @@ }, { "id": 15773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304676,17 +225806,12 @@ }, { "id": 15774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -304696,17 +225821,12 @@ }, { "id": 15775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304717,17 +225837,12 @@ }, { "id": 15776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304738,17 +225853,12 @@ }, { "id": 15777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -304756,17 +225866,12 @@ }, { "id": 15778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -304775,17 +225880,12 @@ }, { "id": 15779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -304794,17 +225894,12 @@ }, { "id": 15780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -304812,17 +225907,12 @@ }, { "id": 15781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -304831,17 +225921,12 @@ }, { "id": 15782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -304850,17 +225935,12 @@ }, { "id": 15783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -304870,17 +225950,12 @@ }, { "id": 15784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304891,17 +225966,12 @@ }, { "id": 15785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304912,17 +225982,12 @@ }, { "id": 15786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -304932,17 +225997,12 @@ }, { "id": 15787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304953,17 +226013,12 @@ }, { "id": 15788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -304974,17 +226029,12 @@ }, { "id": 15789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -304992,17 +226042,12 @@ }, { "id": 15790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305011,17 +226056,12 @@ }, { "id": 15791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305030,17 +226070,12 @@ }, { "id": 15792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -305048,17 +226083,12 @@ }, { "id": 15793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305067,17 +226097,12 @@ }, { "id": 15794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305086,17 +226111,12 @@ }, { "id": 15795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -305105,17 +226125,12 @@ }, { "id": 15796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305125,17 +226140,12 @@ }, { "id": 15797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305145,17 +226155,12 @@ }, { "id": 15798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -305164,17 +226169,12 @@ }, { "id": 15799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305184,17 +226184,12 @@ }, { "id": 15800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305204,17 +226199,12 @@ }, { "id": 15801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -305222,17 +226212,12 @@ }, { "id": 15802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -305240,17 +226225,12 @@ }, { "id": 15803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -305258,17 +226238,12 @@ }, { "id": 15804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -305276,17 +226251,12 @@ }, { "id": 15805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -305294,17 +226264,12 @@ }, { "id": 15806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -305312,17 +226277,12 @@ }, { "id": 15807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -305332,17 +226292,12 @@ }, { "id": 15808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305353,17 +226308,12 @@ }, { "id": 15809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305374,17 +226324,12 @@ }, { "id": 15810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -305394,17 +226339,12 @@ }, { "id": 15811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305415,17 +226355,12 @@ }, { "id": 15812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305436,17 +226371,12 @@ }, { "id": 15813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -305454,17 +226384,12 @@ }, { "id": 15814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305473,17 +226398,12 @@ }, { "id": 15815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305492,17 +226412,12 @@ }, { "id": 15816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -305510,17 +226425,12 @@ }, { "id": 15817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305529,17 +226439,12 @@ }, { "id": 15818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305548,17 +226453,12 @@ }, { "id": 15819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -305568,17 +226468,12 @@ }, { "id": 15820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305589,17 +226484,12 @@ }, { "id": 15821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305610,17 +226500,12 @@ }, { "id": 15822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -305630,17 +226515,12 @@ }, { "id": 15823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305651,17 +226531,12 @@ }, { "id": 15824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -305672,17 +226547,12 @@ }, { "id": 15825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -305690,17 +226560,12 @@ }, { "id": 15826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305709,17 +226574,12 @@ }, { "id": 15827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305728,17 +226588,12 @@ }, { "id": 15828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -305746,17 +226601,12 @@ }, { "id": 15829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305765,17 +226615,12 @@ }, { "id": 15830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -305816,45 +226661,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 15834, "states": [ { "id": 15831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 15832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -305863,17 +226698,12 @@ }, { "id": 15833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -305882,34 +226712,24 @@ }, { "id": 15834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 15835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -305918,17 +226738,12 @@ }, { "id": 15836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -305937,115 +226752,80 @@ }, { "id": 15837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 15838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 15841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 15843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -306053,17 +226833,12 @@ }, { "id": 15844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306073,17 +226848,12 @@ }, { "id": 15845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306093,17 +226863,12 @@ }, { "id": 15846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -306111,17 +226876,12 @@ }, { "id": 15847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306131,17 +226891,12 @@ }, { "id": 15848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306151,34 +226906,24 @@ }, { "id": 15849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306186,17 +226931,12 @@ }, { "id": 15851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306204,34 +226944,24 @@ }, { "id": 15852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306239,17 +226969,12 @@ }, { "id": 15854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306257,17 +226982,12 @@ }, { "id": 15855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -306275,17 +226995,12 @@ }, { "id": 15856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306295,17 +227010,12 @@ }, { "id": 15857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306315,17 +227025,12 @@ }, { "id": 15858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -306333,17 +227038,12 @@ }, { "id": 15859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306353,17 +227053,12 @@ }, { "id": 15860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306373,34 +227068,24 @@ }, { "id": 15861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306408,17 +227093,12 @@ }, { "id": 15863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306426,34 +227106,24 @@ }, { "id": 15864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 15865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306461,17 +227131,12 @@ }, { "id": 15866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -306479,17 +227144,12 @@ }, { "id": 15867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -306497,17 +227157,12 @@ }, { "id": 15868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306517,17 +227172,12 @@ }, { "id": 15869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306537,17 +227187,12 @@ }, { "id": 15870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -306555,17 +227200,12 @@ }, { "id": 15871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306575,17 +227215,12 @@ }, { "id": 15872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306595,34 +227230,24 @@ }, { "id": 15873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -306630,17 +227255,12 @@ }, { "id": 15875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -306648,34 +227268,24 @@ }, { "id": 15876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -306683,17 +227293,12 @@ }, { "id": 15878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -306701,17 +227306,12 @@ }, { "id": 15879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -306720,17 +227320,12 @@ }, { "id": 15880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306741,17 +227336,12 @@ }, { "id": 15881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306762,17 +227352,12 @@ }, { "id": 15882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -306781,17 +227366,12 @@ }, { "id": 15883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306802,17 +227382,12 @@ }, { "id": 15884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306823,34 +227398,24 @@ }, { "id": 15885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -306859,17 +227424,12 @@ }, { "id": 15887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -306878,34 +227438,24 @@ }, { "id": 15888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -306914,17 +227464,12 @@ }, { "id": 15890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -306933,17 +227478,12 @@ }, { "id": 15891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -306952,17 +227492,12 @@ }, { "id": 15892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306973,17 +227508,12 @@ }, { "id": 15893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -306994,17 +227524,12 @@ }, { "id": 15894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -307013,17 +227538,12 @@ }, { "id": 15895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307034,17 +227554,12 @@ }, { "id": 15896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307055,34 +227570,24 @@ }, { "id": 15897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307091,17 +227596,12 @@ }, { "id": 15899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307110,34 +227610,24 @@ }, { "id": 15900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307146,17 +227636,12 @@ }, { "id": 15902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307165,17 +227650,12 @@ }, { "id": 15903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -307183,17 +227663,12 @@ }, { "id": 15904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307203,17 +227678,12 @@ }, { "id": 15905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307223,17 +227693,12 @@ }, { "id": 15906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -307241,17 +227706,12 @@ }, { "id": 15907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307261,17 +227721,12 @@ }, { "id": 15908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307281,34 +227736,24 @@ }, { "id": 15909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -307316,17 +227761,12 @@ }, { "id": 15911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -307334,34 +227774,24 @@ }, { "id": 15912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 15913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -307369,17 +227799,12 @@ }, { "id": 15914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -307387,17 +227812,12 @@ }, { "id": 15915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -307406,17 +227826,12 @@ }, { "id": 15916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307427,17 +227842,12 @@ }, { "id": 15917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307448,17 +227858,12 @@ }, { "id": 15918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -307467,17 +227872,12 @@ }, { "id": 15919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307488,17 +227888,12 @@ }, { "id": 15920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307509,34 +227904,24 @@ }, { "id": 15921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307545,17 +227930,12 @@ }, { "id": 15923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307564,34 +227944,24 @@ }, { "id": 15924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307600,17 +227970,12 @@ }, { "id": 15926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307619,17 +227984,12 @@ }, { "id": 15927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -307638,17 +227998,12 @@ }, { "id": 15928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307659,17 +228014,12 @@ }, { "id": 15929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307680,17 +228030,12 @@ }, { "id": 15930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -307699,17 +228044,12 @@ }, { "id": 15931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307720,17 +228060,12 @@ }, { "id": 15932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -307741,34 +228076,24 @@ }, { "id": 15933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307777,17 +228102,12 @@ }, { "id": 15935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307796,34 +228116,24 @@ }, { "id": 15936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 15937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307832,17 +228142,12 @@ }, { "id": 15938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -307851,17 +228156,12 @@ }, { "id": 15939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -307869,17 +228169,12 @@ }, { "id": 15940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -307888,17 +228183,12 @@ }, { "id": 15941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -307907,17 +228197,12 @@ }, { "id": 15942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -307925,17 +228210,12 @@ }, { "id": 15943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -307944,17 +228224,12 @@ }, { "id": 15944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -307963,119 +228238,84 @@ }, { "id": 15945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 15949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 15951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -308084,17 +228324,12 @@ }, { "id": 15952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308104,17 +228339,12 @@ }, { "id": 15953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308124,17 +228354,12 @@ }, { "id": 15954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -308143,17 +228368,12 @@ }, { "id": 15955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308163,17 +228383,12 @@ }, { "id": 15956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308183,17 +228398,12 @@ }, { "id": 15957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -308201,17 +228411,12 @@ }, { "id": 15958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308219,17 +228424,12 @@ }, { "id": 15959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308237,17 +228437,12 @@ }, { "id": 15960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -308255,17 +228450,12 @@ }, { "id": 15961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308273,17 +228463,12 @@ }, { "id": 15962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308291,17 +228476,12 @@ }, { "id": 15963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -308310,17 +228490,12 @@ }, { "id": 15964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308330,17 +228505,12 @@ }, { "id": 15965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308350,17 +228520,12 @@ }, { "id": 15966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -308369,17 +228534,12 @@ }, { "id": 15967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308389,17 +228549,12 @@ }, { "id": 15968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308409,17 +228564,12 @@ }, { "id": 15969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -308427,17 +228577,12 @@ }, { "id": 15970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308445,17 +228590,12 @@ }, { "id": 15971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308463,17 +228603,12 @@ }, { "id": 15972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -308481,17 +228616,12 @@ }, { "id": 15973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308499,17 +228629,12 @@ }, { "id": 15974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -308517,17 +228642,12 @@ }, { "id": 15975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -308536,17 +228656,12 @@ }, { "id": 15976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308556,17 +228671,12 @@ }, { "id": 15977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308576,17 +228686,12 @@ }, { "id": 15978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -308595,17 +228700,12 @@ }, { "id": 15979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308615,17 +228715,12 @@ }, { "id": 15980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308635,17 +228730,12 @@ }, { "id": 15981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -308653,17 +228743,12 @@ }, { "id": 15982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -308671,17 +228756,12 @@ }, { "id": 15983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -308689,17 +228769,12 @@ }, { "id": 15984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -308707,17 +228782,12 @@ }, { "id": 15985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -308725,17 +228795,12 @@ }, { "id": 15986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -308743,17 +228808,12 @@ }, { "id": 15987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -308763,17 +228823,12 @@ }, { "id": 15988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308784,17 +228839,12 @@ }, { "id": 15989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308805,17 +228855,12 @@ }, { "id": 15990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -308825,17 +228870,12 @@ }, { "id": 15991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308846,17 +228886,12 @@ }, { "id": 15992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -308867,17 +228902,12 @@ }, { "id": 15993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -308885,17 +228915,12 @@ }, { "id": 15994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -308904,17 +228929,12 @@ }, { "id": 15995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -308923,17 +228943,12 @@ }, { "id": 15996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -308941,17 +228956,12 @@ }, { "id": 15997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -308960,17 +228970,12 @@ }, { "id": 15998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -308979,17 +228984,12 @@ }, { "id": 15999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -308999,17 +228999,12 @@ }, { "id": 16000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309020,17 +229015,12 @@ }, { "id": 16001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309041,17 +229031,12 @@ }, { "id": 16002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309061,17 +229046,12 @@ }, { "id": 16003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309082,17 +229062,12 @@ }, { "id": 16004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309103,17 +229078,12 @@ }, { "id": 16005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -309121,17 +229091,12 @@ }, { "id": 16006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309140,17 +229105,12 @@ }, { "id": 16007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309159,17 +229119,12 @@ }, { "id": 16008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -309177,17 +229132,12 @@ }, { "id": 16009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309196,17 +229146,12 @@ }, { "id": 16010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309215,17 +229160,12 @@ }, { "id": 16011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309234,17 +229174,12 @@ }, { "id": 16012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309254,17 +229189,12 @@ }, { "id": 16013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309274,17 +229204,12 @@ }, { "id": 16014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309293,17 +229218,12 @@ }, { "id": 16015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309313,17 +229233,12 @@ }, { "id": 16016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309333,17 +229248,12 @@ }, { "id": 16017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -309351,17 +229261,12 @@ }, { "id": 16018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -309369,17 +229274,12 @@ }, { "id": 16019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -309387,17 +229287,12 @@ }, { "id": 16020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -309405,17 +229300,12 @@ }, { "id": 16021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -309423,17 +229313,12 @@ }, { "id": 16022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -309441,17 +229326,12 @@ }, { "id": 16023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309461,17 +229341,12 @@ }, { "id": 16024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309482,17 +229357,12 @@ }, { "id": 16025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309503,17 +229373,12 @@ }, { "id": 16026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309523,17 +229388,12 @@ }, { "id": 16027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309544,17 +229404,12 @@ }, { "id": 16028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309565,17 +229420,12 @@ }, { "id": 16029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -309583,17 +229433,12 @@ }, { "id": 16030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309602,17 +229447,12 @@ }, { "id": 16031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309621,17 +229461,12 @@ }, { "id": 16032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -309639,17 +229474,12 @@ }, { "id": 16033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309658,17 +229488,12 @@ }, { "id": 16034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309677,17 +229502,12 @@ }, { "id": 16035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309697,17 +229517,12 @@ }, { "id": 16036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309718,17 +229533,12 @@ }, { "id": 16037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309739,17 +229549,12 @@ }, { "id": 16038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -309759,17 +229564,12 @@ }, { "id": 16039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309780,17 +229580,12 @@ }, { "id": 16040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309801,17 +229596,12 @@ }, { "id": 16041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -309819,17 +229609,12 @@ }, { "id": 16042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309838,17 +229623,12 @@ }, { "id": 16043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309857,17 +229637,12 @@ }, { "id": 16044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -309875,17 +229650,12 @@ }, { "id": 16045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309894,17 +229664,12 @@ }, { "id": 16046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -309913,17 +229678,12 @@ }, { "id": 16047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -309931,17 +229691,12 @@ }, { "id": 16048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309950,17 +229705,12 @@ }, { "id": 16049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -309969,17 +229719,12 @@ }, { "id": 16050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -309987,17 +229732,12 @@ }, { "id": 16051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310006,17 +229746,12 @@ }, { "id": 16052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310025,119 +229760,84 @@ }, { "id": 16053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -310146,17 +229846,12 @@ }, { "id": 16060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310166,17 +229861,12 @@ }, { "id": 16061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310186,17 +229876,12 @@ }, { "id": 16062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -310205,17 +229890,12 @@ }, { "id": 16063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310225,17 +229905,12 @@ }, { "id": 16064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310245,17 +229920,12 @@ }, { "id": 16065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -310263,17 +229933,12 @@ }, { "id": 16066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310281,17 +229946,12 @@ }, { "id": 16067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310299,17 +229959,12 @@ }, { "id": 16068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -310317,17 +229972,12 @@ }, { "id": 16069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310335,17 +229985,12 @@ }, { "id": 16070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310353,17 +229998,12 @@ }, { "id": 16071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -310372,17 +230012,12 @@ }, { "id": 16072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310392,17 +230027,12 @@ }, { "id": 16073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310412,17 +230042,12 @@ }, { "id": 16074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -310431,17 +230056,12 @@ }, { "id": 16075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310451,17 +230071,12 @@ }, { "id": 16076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310471,17 +230086,12 @@ }, { "id": 16077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -310489,17 +230099,12 @@ }, { "id": 16078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310507,17 +230112,12 @@ }, { "id": 16079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310525,17 +230125,12 @@ }, { "id": 16080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -310543,17 +230138,12 @@ }, { "id": 16081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310561,17 +230151,12 @@ }, { "id": 16082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -310579,17 +230164,12 @@ }, { "id": 16083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -310598,17 +230178,12 @@ }, { "id": 16084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310618,17 +230193,12 @@ }, { "id": 16085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310638,17 +230208,12 @@ }, { "id": 16086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -310657,17 +230222,12 @@ }, { "id": 16087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310677,17 +230237,12 @@ }, { "id": 16088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310697,17 +230252,12 @@ }, { "id": 16089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -310715,17 +230265,12 @@ }, { "id": 16090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -310733,17 +230278,12 @@ }, { "id": 16091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -310751,17 +230291,12 @@ }, { "id": 16092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -310769,17 +230304,12 @@ }, { "id": 16093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -310787,17 +230317,12 @@ }, { "id": 16094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -310805,17 +230330,12 @@ }, { "id": 16095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -310825,17 +230345,12 @@ }, { "id": 16096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310846,17 +230361,12 @@ }, { "id": 16097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310867,17 +230377,12 @@ }, { "id": 16098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -310887,17 +230392,12 @@ }, { "id": 16099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310908,17 +230408,12 @@ }, { "id": 16100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -310929,17 +230424,12 @@ }, { "id": 16101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -310947,17 +230437,12 @@ }, { "id": 16102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -310966,17 +230451,12 @@ }, { "id": 16103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -310985,17 +230465,12 @@ }, { "id": 16104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311003,17 +230478,12 @@ }, { "id": 16105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311022,17 +230492,12 @@ }, { "id": 16106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311041,17 +230506,12 @@ }, { "id": 16107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311061,17 +230521,12 @@ }, { "id": 16108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311082,17 +230537,12 @@ }, { "id": 16109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311103,17 +230553,12 @@ }, { "id": 16110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311123,17 +230568,12 @@ }, { "id": 16111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311144,17 +230584,12 @@ }, { "id": 16112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311165,17 +230600,12 @@ }, { "id": 16113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311183,17 +230613,12 @@ }, { "id": 16114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311202,17 +230627,12 @@ }, { "id": 16115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311221,17 +230641,12 @@ }, { "id": 16116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311239,17 +230654,12 @@ }, { "id": 16117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311258,17 +230668,12 @@ }, { "id": 16118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311277,17 +230682,12 @@ }, { "id": 16119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311296,17 +230696,12 @@ }, { "id": 16120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311316,17 +230711,12 @@ }, { "id": 16121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311336,17 +230726,12 @@ }, { "id": 16122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311355,17 +230740,12 @@ }, { "id": 16123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311375,17 +230755,12 @@ }, { "id": 16124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311395,17 +230770,12 @@ }, { "id": 16125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -311413,17 +230783,12 @@ }, { "id": 16126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -311431,17 +230796,12 @@ }, { "id": 16127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -311449,17 +230809,12 @@ }, { "id": 16128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -311467,17 +230822,12 @@ }, { "id": 16129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -311485,17 +230835,12 @@ }, { "id": 16130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -311503,17 +230848,12 @@ }, { "id": 16131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311523,17 +230863,12 @@ }, { "id": 16132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311544,17 +230879,12 @@ }, { "id": 16133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311565,17 +230895,12 @@ }, { "id": 16134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311585,17 +230910,12 @@ }, { "id": 16135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311606,17 +230926,12 @@ }, { "id": 16136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311627,17 +230942,12 @@ }, { "id": 16137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311645,17 +230955,12 @@ }, { "id": 16138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311664,17 +230969,12 @@ }, { "id": 16139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311683,17 +230983,12 @@ }, { "id": 16140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311701,17 +230996,12 @@ }, { "id": 16141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311720,17 +231010,12 @@ }, { "id": 16142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311739,17 +231024,12 @@ }, { "id": 16143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311759,17 +231039,12 @@ }, { "id": 16144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311780,17 +231055,12 @@ }, { "id": 16145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311801,17 +231071,12 @@ }, { "id": 16146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -311821,17 +231086,12 @@ }, { "id": 16147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311842,17 +231102,12 @@ }, { "id": 16148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -311863,17 +231118,12 @@ }, { "id": 16149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311881,17 +231131,12 @@ }, { "id": 16150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311900,17 +231145,12 @@ }, { "id": 16151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311919,17 +231159,12 @@ }, { "id": 16152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -311937,17 +231172,12 @@ }, { "id": 16153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -311956,17 +231186,12 @@ }, { "id": 16154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -312007,45 +231232,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 16158, "states": [ { "id": 16155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 16156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312054,17 +231269,12 @@ }, { "id": 16157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312073,34 +231283,24 @@ }, { "id": 16158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 16159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312109,17 +231309,12 @@ }, { "id": 16160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312128,115 +231323,80 @@ }, { "id": 16161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 16162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 16165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -312244,17 +231404,12 @@ }, { "id": 16168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312264,17 +231419,12 @@ }, { "id": 16169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312284,17 +231434,12 @@ }, { "id": 16170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -312302,17 +231447,12 @@ }, { "id": 16171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312322,17 +231462,12 @@ }, { "id": 16172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312342,34 +231477,24 @@ }, { "id": 16173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312377,17 +231502,12 @@ }, { "id": 16175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312395,34 +231515,24 @@ }, { "id": 16176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312430,17 +231540,12 @@ }, { "id": 16178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312448,17 +231553,12 @@ }, { "id": 16179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -312466,17 +231566,12 @@ }, { "id": 16180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312486,17 +231581,12 @@ }, { "id": 16181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312506,17 +231596,12 @@ }, { "id": 16182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -312524,17 +231609,12 @@ }, { "id": 16183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312544,17 +231624,12 @@ }, { "id": 16184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312564,34 +231639,24 @@ }, { "id": 16185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312599,17 +231664,12 @@ }, { "id": 16187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312617,34 +231677,24 @@ }, { "id": 16188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312652,17 +231702,12 @@ }, { "id": 16190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -312670,17 +231715,12 @@ }, { "id": 16191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -312688,17 +231728,12 @@ }, { "id": 16192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312708,17 +231743,12 @@ }, { "id": 16193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312728,17 +231758,12 @@ }, { "id": 16194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -312746,17 +231771,12 @@ }, { "id": 16195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312766,17 +231786,12 @@ }, { "id": 16196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312786,34 +231801,24 @@ }, { "id": 16197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -312821,17 +231826,12 @@ }, { "id": 16199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -312839,34 +231839,24 @@ }, { "id": 16200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -312874,17 +231864,12 @@ }, { "id": 16202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -312892,17 +231877,12 @@ }, { "id": 16203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -312911,17 +231891,12 @@ }, { "id": 16204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312932,17 +231907,12 @@ }, { "id": 16205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312953,17 +231923,12 @@ }, { "id": 16206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -312972,17 +231937,12 @@ }, { "id": 16207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -312993,17 +231953,12 @@ }, { "id": 16208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313014,34 +231969,24 @@ }, { "id": 16209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313050,17 +231995,12 @@ }, { "id": 16211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313069,34 +232009,24 @@ }, { "id": 16212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313105,17 +232035,12 @@ }, { "id": 16214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313124,17 +232049,12 @@ }, { "id": 16215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -313143,17 +232063,12 @@ }, { "id": 16216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313164,17 +232079,12 @@ }, { "id": 16217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313185,17 +232095,12 @@ }, { "id": 16218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -313204,17 +232109,12 @@ }, { "id": 16219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313225,17 +232125,12 @@ }, { "id": 16220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313246,34 +232141,24 @@ }, { "id": 16221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313282,17 +232167,12 @@ }, { "id": 16223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313301,34 +232181,24 @@ }, { "id": 16224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313337,17 +232207,12 @@ }, { "id": 16226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313356,17 +232221,12 @@ }, { "id": 16227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -313374,17 +232234,12 @@ }, { "id": 16228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313394,17 +232249,12 @@ }, { "id": 16229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313414,17 +232264,12 @@ }, { "id": 16230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -313432,17 +232277,12 @@ }, { "id": 16231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313452,17 +232292,12 @@ }, { "id": 16232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313472,34 +232307,24 @@ }, { "id": 16233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -313507,17 +232332,12 @@ }, { "id": 16235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -313525,34 +232345,24 @@ }, { "id": 16236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -313560,17 +232370,12 @@ }, { "id": 16238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -313578,17 +232383,12 @@ }, { "id": 16239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -313597,17 +232397,12 @@ }, { "id": 16240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313618,17 +232413,12 @@ }, { "id": 16241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313639,17 +232429,12 @@ }, { "id": 16242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -313658,17 +232443,12 @@ }, { "id": 16243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313679,17 +232459,12 @@ }, { "id": 16244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313700,34 +232475,24 @@ }, { "id": 16245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313736,17 +232501,12 @@ }, { "id": 16247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313755,34 +232515,24 @@ }, { "id": 16248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313791,17 +232541,12 @@ }, { "id": 16250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313810,17 +232555,12 @@ }, { "id": 16251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -313829,17 +232569,12 @@ }, { "id": 16252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313850,17 +232585,12 @@ }, { "id": 16253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313871,17 +232601,12 @@ }, { "id": 16254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -313890,17 +232615,12 @@ }, { "id": 16255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313911,17 +232631,12 @@ }, { "id": 16256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -313932,34 +232647,24 @@ }, { "id": 16257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313968,17 +232673,12 @@ }, { "id": 16259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -313987,34 +232687,24 @@ }, { "id": 16260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -314023,17 +232713,12 @@ }, { "id": 16262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -314042,17 +232727,12 @@ }, { "id": 16263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -314060,17 +232740,12 @@ }, { "id": 16264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314079,17 +232754,12 @@ }, { "id": 16265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314098,17 +232768,12 @@ }, { "id": 16266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -314116,17 +232781,12 @@ }, { "id": 16267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314135,17 +232795,12 @@ }, { "id": 16268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314154,119 +232809,84 @@ }, { "id": 16269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -314275,17 +232895,12 @@ }, { "id": 16276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314295,17 +232910,12 @@ }, { "id": 16277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314315,17 +232925,12 @@ }, { "id": 16278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -314334,17 +232939,12 @@ }, { "id": 16279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314354,17 +232954,12 @@ }, { "id": 16280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314374,17 +232969,12 @@ }, { "id": 16281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -314392,17 +232982,12 @@ }, { "id": 16282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314410,17 +232995,12 @@ }, { "id": 16283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314428,17 +233008,12 @@ }, { "id": 16284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -314446,17 +233021,12 @@ }, { "id": 16285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314464,17 +233034,12 @@ }, { "id": 16286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314482,17 +233047,12 @@ }, { "id": 16287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -314501,17 +233061,12 @@ }, { "id": 16288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314521,17 +233076,12 @@ }, { "id": 16289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314541,17 +233091,12 @@ }, { "id": 16290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -314560,17 +233105,12 @@ }, { "id": 16291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314580,17 +233120,12 @@ }, { "id": 16292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314600,17 +233135,12 @@ }, { "id": 16293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -314618,17 +233148,12 @@ }, { "id": 16294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314636,17 +233161,12 @@ }, { "id": 16295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314654,17 +233174,12 @@ }, { "id": 16296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -314672,17 +233187,12 @@ }, { "id": 16297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314690,17 +233200,12 @@ }, { "id": 16298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -314708,17 +233213,12 @@ }, { "id": 16299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -314727,17 +233227,12 @@ }, { "id": 16300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314747,17 +233242,12 @@ }, { "id": 16301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314767,17 +233257,12 @@ }, { "id": 16302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -314786,17 +233271,12 @@ }, { "id": 16303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314806,17 +233286,12 @@ }, { "id": 16304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314826,17 +233301,12 @@ }, { "id": 16305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -314844,17 +233314,12 @@ }, { "id": 16306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -314862,17 +233327,12 @@ }, { "id": 16307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -314880,17 +233340,12 @@ }, { "id": 16308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -314898,17 +233353,12 @@ }, { "id": 16309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -314916,17 +233366,12 @@ }, { "id": 16310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -314934,17 +233379,12 @@ }, { "id": 16311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -314954,17 +233394,12 @@ }, { "id": 16312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314975,17 +233410,12 @@ }, { "id": 16313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -314996,17 +233426,12 @@ }, { "id": 16314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315016,17 +233441,12 @@ }, { "id": 16315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315037,17 +233457,12 @@ }, { "id": 16316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315058,17 +233473,12 @@ }, { "id": 16317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -315076,17 +233486,12 @@ }, { "id": 16318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315095,17 +233500,12 @@ }, { "id": 16319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315114,17 +233514,12 @@ }, { "id": 16320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -315132,17 +233527,12 @@ }, { "id": 16321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315151,17 +233541,12 @@ }, { "id": 16322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315170,17 +233555,12 @@ }, { "id": 16323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315190,17 +233570,12 @@ }, { "id": 16324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315211,17 +233586,12 @@ }, { "id": 16325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315232,17 +233602,12 @@ }, { "id": 16326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315252,17 +233617,12 @@ }, { "id": 16327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315273,17 +233633,12 @@ }, { "id": 16328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315294,17 +233649,12 @@ }, { "id": 16329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -315312,17 +233662,12 @@ }, { "id": 16330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315331,17 +233676,12 @@ }, { "id": 16331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315350,17 +233690,12 @@ }, { "id": 16332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -315368,17 +233703,12 @@ }, { "id": 16333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315387,17 +233717,12 @@ }, { "id": 16334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315406,17 +233731,12 @@ }, { "id": 16335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315425,17 +233745,12 @@ }, { "id": 16336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315445,17 +233760,12 @@ }, { "id": 16337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315465,17 +233775,12 @@ }, { "id": 16338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315484,17 +233789,12 @@ }, { "id": 16339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315504,17 +233804,12 @@ }, { "id": 16340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315524,17 +233819,12 @@ }, { "id": 16341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -315542,17 +233832,12 @@ }, { "id": 16342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -315560,17 +233845,12 @@ }, { "id": 16343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -315578,17 +233858,12 @@ }, { "id": 16344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -315596,17 +233871,12 @@ }, { "id": 16345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -315614,17 +233884,12 @@ }, { "id": 16346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -315632,17 +233897,12 @@ }, { "id": 16347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315652,17 +233912,12 @@ }, { "id": 16348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315673,17 +233928,12 @@ }, { "id": 16349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315694,17 +233944,12 @@ }, { "id": 16350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315714,17 +233959,12 @@ }, { "id": 16351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315735,17 +233975,12 @@ }, { "id": 16352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315756,17 +233991,12 @@ }, { "id": 16353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -315774,17 +234004,12 @@ }, { "id": 16354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315793,17 +234018,12 @@ }, { "id": 16355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315812,17 +234032,12 @@ }, { "id": 16356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -315830,17 +234045,12 @@ }, { "id": 16357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315849,17 +234059,12 @@ }, { "id": 16358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -315868,17 +234073,12 @@ }, { "id": 16359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315888,17 +234088,12 @@ }, { "id": 16360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315909,17 +234104,12 @@ }, { "id": 16361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315930,17 +234120,12 @@ }, { "id": 16362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -315950,17 +234135,12 @@ }, { "id": 16363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315971,17 +234151,12 @@ }, { "id": 16364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -315992,17 +234167,12 @@ }, { "id": 16365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -316010,17 +234180,12 @@ }, { "id": 16366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -316029,17 +234194,12 @@ }, { "id": 16367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -316048,17 +234208,12 @@ }, { "id": 16368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -316066,17 +234221,12 @@ }, { "id": 16369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -316085,17 +234235,12 @@ }, { "id": 16370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -316104,17 +234249,12 @@ }, { "id": 16371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -316122,17 +234262,12 @@ }, { "id": 16372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316141,17 +234276,12 @@ }, { "id": 16373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316160,17 +234290,12 @@ }, { "id": 16374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -316178,17 +234303,12 @@ }, { "id": 16375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316197,17 +234317,12 @@ }, { "id": 16376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316216,119 +234331,84 @@ }, { "id": 16377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -316337,17 +234417,12 @@ }, { "id": 16384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316357,17 +234432,12 @@ }, { "id": 16385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316377,17 +234447,12 @@ }, { "id": 16386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -316396,17 +234461,12 @@ }, { "id": 16387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316416,17 +234476,12 @@ }, { "id": 16388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316436,17 +234491,12 @@ }, { "id": 16389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -316454,17 +234504,12 @@ }, { "id": 16390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316472,17 +234517,12 @@ }, { "id": 16391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316490,17 +234530,12 @@ }, { "id": 16392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -316508,17 +234543,12 @@ }, { "id": 16393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316526,17 +234556,12 @@ }, { "id": 16394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316544,17 +234569,12 @@ }, { "id": 16395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -316563,17 +234583,12 @@ }, { "id": 16396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316583,17 +234598,12 @@ }, { "id": 16397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316603,17 +234613,12 @@ }, { "id": 16398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -316622,17 +234627,12 @@ }, { "id": 16399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316642,17 +234642,12 @@ }, { "id": 16400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316662,17 +234657,12 @@ }, { "id": 16401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -316680,17 +234670,12 @@ }, { "id": 16402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316698,17 +234683,12 @@ }, { "id": 16403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316716,17 +234696,12 @@ }, { "id": 16404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -316734,17 +234709,12 @@ }, { "id": 16405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316752,17 +234722,12 @@ }, { "id": 16406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -316770,17 +234735,12 @@ }, { "id": 16407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -316789,17 +234749,12 @@ }, { "id": 16408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316809,17 +234764,12 @@ }, { "id": 16409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316829,17 +234779,12 @@ }, { "id": 16410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -316848,17 +234793,12 @@ }, { "id": 16411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316868,17 +234808,12 @@ }, { "id": 16412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -316888,17 +234823,12 @@ }, { "id": 16413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -316906,17 +234836,12 @@ }, { "id": 16414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -316924,17 +234849,12 @@ }, { "id": 16415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -316942,17 +234862,12 @@ }, { "id": 16416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -316960,17 +234875,12 @@ }, { "id": 16417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -316978,17 +234888,12 @@ }, { "id": 16418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -316996,17 +234901,12 @@ }, { "id": 16419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317016,17 +234916,12 @@ }, { "id": 16420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317037,17 +234932,12 @@ }, { "id": 16421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317058,17 +234948,12 @@ }, { "id": 16422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317078,17 +234963,12 @@ }, { "id": 16423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317099,17 +234979,12 @@ }, { "id": 16424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317120,17 +234995,12 @@ }, { "id": 16425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -317138,17 +235008,12 @@ }, { "id": 16426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317157,17 +235022,12 @@ }, { "id": 16427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317176,17 +235036,12 @@ }, { "id": 16428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -317194,17 +235049,12 @@ }, { "id": 16429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317213,17 +235063,12 @@ }, { "id": 16430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317232,17 +235077,12 @@ }, { "id": 16431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317252,17 +235092,12 @@ }, { "id": 16432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317273,17 +235108,12 @@ }, { "id": 16433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317294,17 +235124,12 @@ }, { "id": 16434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317314,17 +235139,12 @@ }, { "id": 16435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317335,17 +235155,12 @@ }, { "id": 16436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317356,17 +235171,12 @@ }, { "id": 16437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -317374,17 +235184,12 @@ }, { "id": 16438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317393,17 +235198,12 @@ }, { "id": 16439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317412,17 +235212,12 @@ }, { "id": 16440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -317430,17 +235225,12 @@ }, { "id": 16441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317449,17 +235239,12 @@ }, { "id": 16442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317468,17 +235253,12 @@ }, { "id": 16443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317487,17 +235267,12 @@ }, { "id": 16444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317507,17 +235282,12 @@ }, { "id": 16445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317527,17 +235297,12 @@ }, { "id": 16446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317546,17 +235311,12 @@ }, { "id": 16447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317566,17 +235326,12 @@ }, { "id": 16448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317586,17 +235341,12 @@ }, { "id": 16449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -317604,17 +235354,12 @@ }, { "id": 16450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -317622,17 +235367,12 @@ }, { "id": 16451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -317640,17 +235380,12 @@ }, { "id": 16452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -317658,17 +235393,12 @@ }, { "id": 16453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -317676,17 +235406,12 @@ }, { "id": 16454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -317694,17 +235419,12 @@ }, { "id": 16455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317714,17 +235434,12 @@ }, { "id": 16456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317735,17 +235450,12 @@ }, { "id": 16457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317756,17 +235466,12 @@ }, { "id": 16458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317776,17 +235481,12 @@ }, { "id": 16459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317797,17 +235497,12 @@ }, { "id": 16460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317818,17 +235513,12 @@ }, { "id": 16461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -317836,17 +235526,12 @@ }, { "id": 16462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317855,17 +235540,12 @@ }, { "id": 16463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317874,17 +235554,12 @@ }, { "id": 16464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -317892,17 +235567,12 @@ }, { "id": 16465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317911,17 +235581,12 @@ }, { "id": 16466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -317930,17 +235595,12 @@ }, { "id": 16467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -317950,17 +235610,12 @@ }, { "id": 16468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317971,17 +235626,12 @@ }, { "id": 16469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -317992,17 +235642,12 @@ }, { "id": 16470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -318012,17 +235657,12 @@ }, { "id": 16471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -318033,17 +235673,12 @@ }, { "id": 16472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -318054,17 +235689,12 @@ }, { "id": 16473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -318072,17 +235702,12 @@ }, { "id": 16474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -318091,17 +235716,12 @@ }, { "id": 16475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -318110,17 +235730,12 @@ }, { "id": 16476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -318128,17 +235743,12 @@ }, { "id": 16477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -318147,17 +235757,12 @@ }, { "id": 16478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -318198,45 +235803,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 16482, "states": [ { "id": 16479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 16480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318245,17 +235840,12 @@ }, { "id": 16481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318264,34 +235854,24 @@ }, { "id": 16482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 16483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318300,17 +235880,12 @@ }, { "id": 16484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318319,115 +235894,80 @@ }, { "id": 16485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 16486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 16489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -318435,17 +235975,12 @@ }, { "id": 16492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318455,17 +235990,12 @@ }, { "id": 16493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318475,17 +236005,12 @@ }, { "id": 16494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -318493,17 +236018,12 @@ }, { "id": 16495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318513,17 +236033,12 @@ }, { "id": 16496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318533,34 +236048,24 @@ }, { "id": 16497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318568,17 +236073,12 @@ }, { "id": 16499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318586,34 +236086,24 @@ }, { "id": 16500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318621,17 +236111,12 @@ }, { "id": 16502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318639,17 +236124,12 @@ }, { "id": 16503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -318657,17 +236137,12 @@ }, { "id": 16504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318677,17 +236152,12 @@ }, { "id": 16505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318697,17 +236167,12 @@ }, { "id": 16506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -318715,17 +236180,12 @@ }, { "id": 16507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318735,17 +236195,12 @@ }, { "id": 16508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318755,34 +236210,24 @@ }, { "id": 16509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318790,17 +236235,12 @@ }, { "id": 16511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318808,34 +236248,24 @@ }, { "id": 16512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318843,17 +236273,12 @@ }, { "id": 16514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -318861,17 +236286,12 @@ }, { "id": 16515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -318879,17 +236299,12 @@ }, { "id": 16516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318899,17 +236314,12 @@ }, { "id": 16517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318919,17 +236329,12 @@ }, { "id": 16518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -318937,17 +236342,12 @@ }, { "id": 16519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318957,17 +236357,12 @@ }, { "id": 16520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -318977,34 +236372,24 @@ }, { "id": 16521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319012,17 +236397,12 @@ }, { "id": 16523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319030,34 +236410,24 @@ }, { "id": 16524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319065,17 +236435,12 @@ }, { "id": 16526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319083,17 +236448,12 @@ }, { "id": 16527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -319102,17 +236462,12 @@ }, { "id": 16528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319123,17 +236478,12 @@ }, { "id": 16529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319144,17 +236494,12 @@ }, { "id": 16530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -319163,17 +236508,12 @@ }, { "id": 16531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319184,17 +236524,12 @@ }, { "id": 16532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319205,34 +236540,24 @@ }, { "id": 16533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319241,17 +236566,12 @@ }, { "id": 16535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319260,34 +236580,24 @@ }, { "id": 16536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319296,17 +236606,12 @@ }, { "id": 16538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319315,17 +236620,12 @@ }, { "id": 16539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -319334,17 +236634,12 @@ }, { "id": 16540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319355,17 +236650,12 @@ }, { "id": 16541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319376,17 +236666,12 @@ }, { "id": 16542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -319395,17 +236680,12 @@ }, { "id": 16543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319416,17 +236696,12 @@ }, { "id": 16544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319437,34 +236712,24 @@ }, { "id": 16545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319473,17 +236738,12 @@ }, { "id": 16547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319492,34 +236752,24 @@ }, { "id": 16548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319528,17 +236778,12 @@ }, { "id": 16550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319547,17 +236792,12 @@ }, { "id": 16551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -319565,17 +236805,12 @@ }, { "id": 16552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319585,17 +236820,12 @@ }, { "id": 16553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319605,17 +236835,12 @@ }, { "id": 16554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -319623,17 +236848,12 @@ }, { "id": 16555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319643,17 +236863,12 @@ }, { "id": 16556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319663,34 +236878,24 @@ }, { "id": 16557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319698,17 +236903,12 @@ }, { "id": 16559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319716,34 +236916,24 @@ }, { "id": 16560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319751,17 +236941,12 @@ }, { "id": 16562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -319769,17 +236954,12 @@ }, { "id": 16563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -319788,17 +236968,12 @@ }, { "id": 16564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319809,17 +236984,12 @@ }, { "id": 16565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319830,17 +237000,12 @@ }, { "id": 16566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -319849,17 +237014,12 @@ }, { "id": 16567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319870,17 +237030,12 @@ }, { "id": 16568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -319891,34 +237046,24 @@ }, { "id": 16569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319927,17 +237072,12 @@ }, { "id": 16571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319946,34 +237086,24 @@ }, { "id": 16572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -319982,17 +237112,12 @@ }, { "id": 16574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -320001,17 +237126,12 @@ }, { "id": 16575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -320020,17 +237140,12 @@ }, { "id": 16576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -320041,17 +237156,12 @@ }, { "id": 16577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -320062,17 +237172,12 @@ }, { "id": 16578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -320081,17 +237186,12 @@ }, { "id": 16579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -320102,17 +237202,12 @@ }, { "id": 16580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -320123,34 +237218,24 @@ }, { "id": 16581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -320159,17 +237244,12 @@ }, { "id": 16583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -320178,34 +237258,24 @@ }, { "id": 16584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -320214,17 +237284,12 @@ }, { "id": 16586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -320233,17 +237298,12 @@ }, { "id": 16587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -320251,17 +237311,12 @@ }, { "id": 16588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320270,17 +237325,12 @@ }, { "id": 16589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320289,17 +237339,12 @@ }, { "id": 16590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -320307,17 +237352,12 @@ }, { "id": 16591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320326,17 +237366,12 @@ }, { "id": 16592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320345,119 +237380,84 @@ }, { "id": 16593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -320466,17 +237466,12 @@ }, { "id": 16600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320486,17 +237481,12 @@ }, { "id": 16601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320506,17 +237496,12 @@ }, { "id": 16602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -320525,17 +237510,12 @@ }, { "id": 16603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320545,17 +237525,12 @@ }, { "id": 16604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320565,17 +237540,12 @@ }, { "id": 16605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -320583,17 +237553,12 @@ }, { "id": 16606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320601,17 +237566,12 @@ }, { "id": 16607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320619,17 +237579,12 @@ }, { "id": 16608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -320637,17 +237592,12 @@ }, { "id": 16609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320655,17 +237605,12 @@ }, { "id": 16610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320673,17 +237618,12 @@ }, { "id": 16611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -320692,17 +237632,12 @@ }, { "id": 16612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320712,17 +237647,12 @@ }, { "id": 16613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320732,17 +237662,12 @@ }, { "id": 16614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -320751,17 +237676,12 @@ }, { "id": 16615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320771,17 +237691,12 @@ }, { "id": 16616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320791,17 +237706,12 @@ }, { "id": 16617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -320809,17 +237719,12 @@ }, { "id": 16618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320827,17 +237732,12 @@ }, { "id": 16619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320845,17 +237745,12 @@ }, { "id": 16620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -320863,17 +237758,12 @@ }, { "id": 16621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320881,17 +237771,12 @@ }, { "id": 16622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -320899,17 +237784,12 @@ }, { "id": 16623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -320918,17 +237798,12 @@ }, { "id": 16624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320938,17 +237813,12 @@ }, { "id": 16625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320958,17 +237828,12 @@ }, { "id": 16626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -320977,17 +237842,12 @@ }, { "id": 16627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -320997,17 +237857,12 @@ }, { "id": 16628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321017,17 +237872,12 @@ }, { "id": 16629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -321035,17 +237885,12 @@ }, { "id": 16630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321053,17 +237898,12 @@ }, { "id": 16631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321071,17 +237911,12 @@ }, { "id": 16632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -321089,17 +237924,12 @@ }, { "id": 16633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321107,17 +237937,12 @@ }, { "id": 16634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321125,17 +237950,12 @@ }, { "id": 16635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321145,17 +237965,12 @@ }, { "id": 16636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321166,17 +237981,12 @@ }, { "id": 16637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321187,17 +237997,12 @@ }, { "id": 16638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321207,17 +238012,12 @@ }, { "id": 16639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321228,17 +238028,12 @@ }, { "id": 16640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321249,17 +238044,12 @@ }, { "id": 16641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -321267,17 +238057,12 @@ }, { "id": 16642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321286,17 +238071,12 @@ }, { "id": 16643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321305,17 +238085,12 @@ }, { "id": 16644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -321323,17 +238098,12 @@ }, { "id": 16645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321342,17 +238112,12 @@ }, { "id": 16646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321361,17 +238126,12 @@ }, { "id": 16647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321381,17 +238141,12 @@ }, { "id": 16648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321402,17 +238157,12 @@ }, { "id": 16649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321423,17 +238173,12 @@ }, { "id": 16650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321443,17 +238188,12 @@ }, { "id": 16651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321464,17 +238204,12 @@ }, { "id": 16652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321485,17 +238220,12 @@ }, { "id": 16653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -321503,17 +238233,12 @@ }, { "id": 16654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321522,17 +238247,12 @@ }, { "id": 16655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321541,17 +238261,12 @@ }, { "id": 16656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -321559,17 +238274,12 @@ }, { "id": 16657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321578,17 +238288,12 @@ }, { "id": 16658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321597,17 +238302,12 @@ }, { "id": 16659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321616,17 +238316,12 @@ }, { "id": 16660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321636,17 +238331,12 @@ }, { "id": 16661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321656,17 +238346,12 @@ }, { "id": 16662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321675,17 +238360,12 @@ }, { "id": 16663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321695,17 +238375,12 @@ }, { "id": 16664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321715,17 +238390,12 @@ }, { "id": 16665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -321733,17 +238403,12 @@ }, { "id": 16666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321751,17 +238416,12 @@ }, { "id": 16667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321769,17 +238429,12 @@ }, { "id": 16668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -321787,17 +238442,12 @@ }, { "id": 16669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321805,17 +238455,12 @@ }, { "id": 16670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -321823,17 +238468,12 @@ }, { "id": 16671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321843,17 +238483,12 @@ }, { "id": 16672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321864,17 +238499,12 @@ }, { "id": 16673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321885,17 +238515,12 @@ }, { "id": 16674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -321905,17 +238530,12 @@ }, { "id": 16675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321926,17 +238546,12 @@ }, { "id": 16676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -321947,17 +238562,12 @@ }, { "id": 16677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -321965,17 +238575,12 @@ }, { "id": 16678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -321984,17 +238589,12 @@ }, { "id": 16679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322003,17 +238603,12 @@ }, { "id": 16680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -322021,17 +238616,12 @@ }, { "id": 16681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322040,17 +238630,12 @@ }, { "id": 16682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322059,17 +238644,12 @@ }, { "id": 16683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -322079,17 +238659,12 @@ }, { "id": 16684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322100,17 +238675,12 @@ }, { "id": 16685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322121,17 +238691,12 @@ }, { "id": 16686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -322141,17 +238706,12 @@ }, { "id": 16687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322162,17 +238722,12 @@ }, { "id": 16688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322183,17 +238738,12 @@ }, { "id": 16689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -322201,17 +238751,12 @@ }, { "id": 16690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322220,17 +238765,12 @@ }, { "id": 16691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322239,17 +238779,12 @@ }, { "id": 16692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -322257,17 +238792,12 @@ }, { "id": 16693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322276,17 +238806,12 @@ }, { "id": 16694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -322295,17 +238820,12 @@ }, { "id": 16695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -322313,17 +238833,12 @@ }, { "id": 16696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322332,17 +238847,12 @@ }, { "id": 16697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322351,17 +238861,12 @@ }, { "id": 16698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -322369,17 +238874,12 @@ }, { "id": 16699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322388,17 +238888,12 @@ }, { "id": 16700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322407,119 +238902,84 @@ }, { "id": 16701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -322528,17 +238988,12 @@ }, { "id": 16708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322548,17 +239003,12 @@ }, { "id": 16709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322568,17 +239018,12 @@ }, { "id": 16710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -322587,17 +239032,12 @@ }, { "id": 16711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322607,17 +239047,12 @@ }, { "id": 16712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322627,17 +239062,12 @@ }, { "id": 16713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -322645,17 +239075,12 @@ }, { "id": 16714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322663,17 +239088,12 @@ }, { "id": 16715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322681,17 +239101,12 @@ }, { "id": 16716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -322699,17 +239114,12 @@ }, { "id": 16717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322717,17 +239127,12 @@ }, { "id": 16718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322735,17 +239140,12 @@ }, { "id": 16719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -322754,17 +239154,12 @@ }, { "id": 16720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322774,17 +239169,12 @@ }, { "id": 16721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322794,17 +239184,12 @@ }, { "id": 16722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -322813,17 +239198,12 @@ }, { "id": 16723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322833,17 +239213,12 @@ }, { "id": 16724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -322853,17 +239228,12 @@ }, { "id": 16725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -322871,17 +239241,12 @@ }, { "id": 16726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322889,17 +239254,12 @@ }, { "id": 16727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322907,17 +239267,12 @@ }, { "id": 16728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -322925,17 +239280,12 @@ }, { "id": 16729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322943,17 +239293,12 @@ }, { "id": 16730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -322961,17 +239306,12 @@ }, { "id": 16731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -322980,17 +239320,12 @@ }, { "id": 16732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323000,17 +239335,12 @@ }, { "id": 16733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323020,17 +239350,12 @@ }, { "id": 16734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323039,17 +239364,12 @@ }, { "id": 16735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323059,17 +239379,12 @@ }, { "id": 16736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323079,17 +239394,12 @@ }, { "id": 16737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -323097,17 +239407,12 @@ }, { "id": 16738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323115,17 +239420,12 @@ }, { "id": 16739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323133,17 +239433,12 @@ }, { "id": 16740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -323151,17 +239446,12 @@ }, { "id": 16741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323169,17 +239459,12 @@ }, { "id": 16742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323187,17 +239472,12 @@ }, { "id": 16743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323207,17 +239487,12 @@ }, { "id": 16744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323228,17 +239503,12 @@ }, { "id": 16745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323249,17 +239519,12 @@ }, { "id": 16746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323269,17 +239534,12 @@ }, { "id": 16747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323290,17 +239550,12 @@ }, { "id": 16748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323311,17 +239566,12 @@ }, { "id": 16749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -323329,17 +239579,12 @@ }, { "id": 16750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323348,17 +239593,12 @@ }, { "id": 16751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323367,17 +239607,12 @@ }, { "id": 16752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -323385,17 +239620,12 @@ }, { "id": 16753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323404,17 +239634,12 @@ }, { "id": 16754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323423,17 +239648,12 @@ }, { "id": 16755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323443,17 +239663,12 @@ }, { "id": 16756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323464,17 +239679,12 @@ }, { "id": 16757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323485,17 +239695,12 @@ }, { "id": 16758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323505,17 +239710,12 @@ }, { "id": 16759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323526,17 +239726,12 @@ }, { "id": 16760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323547,17 +239742,12 @@ }, { "id": 16761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -323565,17 +239755,12 @@ }, { "id": 16762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323584,17 +239769,12 @@ }, { "id": 16763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323603,17 +239783,12 @@ }, { "id": 16764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -323621,17 +239796,12 @@ }, { "id": 16765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323640,17 +239810,12 @@ }, { "id": 16766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -323659,17 +239824,12 @@ }, { "id": 16767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323678,17 +239838,12 @@ }, { "id": 16768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323698,17 +239853,12 @@ }, { "id": 16769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323718,17 +239868,12 @@ }, { "id": 16770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323737,17 +239882,12 @@ }, { "id": 16771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323757,17 +239897,12 @@ }, { "id": 16772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323777,17 +239912,12 @@ }, { "id": 16773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -323795,17 +239925,12 @@ }, { "id": 16774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323813,17 +239938,12 @@ }, { "id": 16775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323831,17 +239951,12 @@ }, { "id": 16776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -323849,17 +239964,12 @@ }, { "id": 16777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323867,17 +239977,12 @@ }, { "id": 16778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -323885,17 +239990,12 @@ }, { "id": 16779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323905,17 +240005,12 @@ }, { "id": 16780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323926,17 +240021,12 @@ }, { "id": 16781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323947,17 +240037,12 @@ }, { "id": 16782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -323967,17 +240052,12 @@ }, { "id": 16783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -323988,17 +240068,12 @@ }, { "id": 16784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -324009,17 +240084,12 @@ }, { "id": 16785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -324027,17 +240097,12 @@ }, { "id": 16786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324046,17 +240111,12 @@ }, { "id": 16787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324065,17 +240125,12 @@ }, { "id": 16788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -324083,17 +240138,12 @@ }, { "id": 16789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324102,17 +240152,12 @@ }, { "id": 16790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324121,17 +240166,12 @@ }, { "id": 16791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -324141,17 +240181,12 @@ }, { "id": 16792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -324162,17 +240197,12 @@ }, { "id": 16793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -324183,17 +240213,12 @@ }, { "id": 16794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -324203,17 +240228,12 @@ }, { "id": 16795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -324224,17 +240244,12 @@ }, { "id": 16796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -324245,17 +240260,12 @@ }, { "id": 16797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -324263,17 +240273,12 @@ }, { "id": 16798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324282,17 +240287,12 @@ }, { "id": 16799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324301,17 +240301,12 @@ }, { "id": 16800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -324319,17 +240314,12 @@ }, { "id": 16801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324338,17 +240328,12 @@ }, { "id": 16802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -324389,45 +240374,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 16806, "states": [ { "id": 16803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 16804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324436,17 +240411,12 @@ }, { "id": 16805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324455,34 +240425,24 @@ }, { "id": 16806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 16807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324491,17 +240451,12 @@ }, { "id": 16808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324510,115 +240465,80 @@ }, { "id": 16809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 16810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 16813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 16815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -324626,17 +240546,12 @@ }, { "id": 16816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324646,17 +240561,12 @@ }, { "id": 16817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324666,17 +240576,12 @@ }, { "id": 16818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -324684,17 +240589,12 @@ }, { "id": 16819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324704,17 +240604,12 @@ }, { "id": 16820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324724,34 +240619,24 @@ }, { "id": 16821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -324759,17 +240644,12 @@ }, { "id": 16823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -324777,34 +240657,24 @@ }, { "id": 16824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -324812,17 +240682,12 @@ }, { "id": 16826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -324830,17 +240695,12 @@ }, { "id": 16827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -324848,17 +240708,12 @@ }, { "id": 16828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324868,17 +240723,12 @@ }, { "id": 16829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324888,17 +240738,12 @@ }, { "id": 16830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -324906,17 +240751,12 @@ }, { "id": 16831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324926,17 +240766,12 @@ }, { "id": 16832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -324946,34 +240781,24 @@ }, { "id": 16833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -324981,17 +240806,12 @@ }, { "id": 16835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -324999,34 +240819,24 @@ }, { "id": 16836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 16837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -325034,17 +240844,12 @@ }, { "id": 16838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -325052,17 +240857,12 @@ }, { "id": 16839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -325070,17 +240870,12 @@ }, { "id": 16840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325090,17 +240885,12 @@ }, { "id": 16841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325110,17 +240900,12 @@ }, { "id": 16842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -325128,17 +240913,12 @@ }, { "id": 16843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325148,17 +240928,12 @@ }, { "id": 16844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325168,34 +240943,24 @@ }, { "id": 16845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325203,17 +240968,12 @@ }, { "id": 16847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325221,34 +240981,24 @@ }, { "id": 16848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325256,17 +241006,12 @@ }, { "id": 16850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325274,17 +241019,12 @@ }, { "id": 16851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -325293,17 +241033,12 @@ }, { "id": 16852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325314,17 +241049,12 @@ }, { "id": 16853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325335,17 +241065,12 @@ }, { "id": 16854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -325354,17 +241079,12 @@ }, { "id": 16855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325375,17 +241095,12 @@ }, { "id": 16856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325396,34 +241111,24 @@ }, { "id": 16857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325432,17 +241137,12 @@ }, { "id": 16859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325451,34 +241151,24 @@ }, { "id": 16860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325487,17 +241177,12 @@ }, { "id": 16862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325506,17 +241191,12 @@ }, { "id": 16863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -325525,17 +241205,12 @@ }, { "id": 16864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325546,17 +241221,12 @@ }, { "id": 16865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325567,17 +241237,12 @@ }, { "id": 16866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -325586,17 +241251,12 @@ }, { "id": 16867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325607,17 +241267,12 @@ }, { "id": 16868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325628,34 +241283,24 @@ }, { "id": 16869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325664,17 +241309,12 @@ }, { "id": 16871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325683,34 +241323,24 @@ }, { "id": 16872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325719,17 +241349,12 @@ }, { "id": 16874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -325738,17 +241363,12 @@ }, { "id": 16875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -325756,17 +241376,12 @@ }, { "id": 16876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325776,17 +241391,12 @@ }, { "id": 16877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325796,17 +241406,12 @@ }, { "id": 16878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -325814,17 +241419,12 @@ }, { "id": 16879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325834,17 +241434,12 @@ }, { "id": 16880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -325854,34 +241449,24 @@ }, { "id": 16881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325889,17 +241474,12 @@ }, { "id": 16883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325907,34 +241487,24 @@ }, { "id": 16884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 16885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325942,17 +241512,12 @@ }, { "id": 16886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -325960,17 +241525,12 @@ }, { "id": 16887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -325979,17 +241539,12 @@ }, { "id": 16888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326000,17 +241555,12 @@ }, { "id": 16889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326021,17 +241571,12 @@ }, { "id": 16890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -326040,17 +241585,12 @@ }, { "id": 16891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326061,17 +241601,12 @@ }, { "id": 16892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326082,34 +241617,24 @@ }, { "id": 16893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326118,17 +241643,12 @@ }, { "id": 16895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326137,34 +241657,24 @@ }, { "id": 16896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326173,17 +241683,12 @@ }, { "id": 16898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326192,17 +241697,12 @@ }, { "id": 16899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -326211,17 +241711,12 @@ }, { "id": 16900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326232,17 +241727,12 @@ }, { "id": 16901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326253,17 +241743,12 @@ }, { "id": 16902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -326272,17 +241757,12 @@ }, { "id": 16903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326293,17 +241773,12 @@ }, { "id": 16904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -326314,34 +241789,24 @@ }, { "id": 16905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326350,17 +241815,12 @@ }, { "id": 16907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326369,34 +241829,24 @@ }, { "id": 16908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 16909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326405,17 +241855,12 @@ }, { "id": 16910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -326424,17 +241869,12 @@ }, { "id": 16911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -326442,17 +241882,12 @@ }, { "id": 16912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326461,17 +241896,12 @@ }, { "id": 16913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326480,17 +241910,12 @@ }, { "id": 16914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -326498,17 +241923,12 @@ }, { "id": 16915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326517,17 +241937,12 @@ }, { "id": 16916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326536,119 +241951,84 @@ }, { "id": 16917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 16921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 16923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -326657,17 +242037,12 @@ }, { "id": 16924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326677,17 +242052,12 @@ }, { "id": 16925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326697,17 +242067,12 @@ }, { "id": 16926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -326716,17 +242081,12 @@ }, { "id": 16927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326736,17 +242096,12 @@ }, { "id": 16928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326756,17 +242111,12 @@ }, { "id": 16929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -326774,17 +242124,12 @@ }, { "id": 16930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -326792,17 +242137,12 @@ }, { "id": 16931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -326810,17 +242150,12 @@ }, { "id": 16932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -326828,17 +242163,12 @@ }, { "id": 16933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -326846,17 +242176,12 @@ }, { "id": 16934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -326864,17 +242189,12 @@ }, { "id": 16935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -326883,17 +242203,12 @@ }, { "id": 16936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326903,17 +242218,12 @@ }, { "id": 16937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326923,17 +242233,12 @@ }, { "id": 16938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -326942,17 +242247,12 @@ }, { "id": 16939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326962,17 +242262,12 @@ }, { "id": 16940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -326982,17 +242277,12 @@ }, { "id": 16941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -327000,17 +242290,12 @@ }, { "id": 16942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -327018,17 +242303,12 @@ }, { "id": 16943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -327036,17 +242316,12 @@ }, { "id": 16944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -327054,17 +242329,12 @@ }, { "id": 16945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -327072,17 +242342,12 @@ }, { "id": 16946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -327090,17 +242355,12 @@ }, { "id": 16947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327109,17 +242369,12 @@ }, { "id": 16948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327129,17 +242384,12 @@ }, { "id": 16949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327149,17 +242399,12 @@ }, { "id": 16950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327168,17 +242413,12 @@ }, { "id": 16951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327188,17 +242428,12 @@ }, { "id": 16952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327208,17 +242443,12 @@ }, { "id": 16953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -327226,17 +242456,12 @@ }, { "id": 16954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327244,17 +242469,12 @@ }, { "id": 16955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327262,17 +242482,12 @@ }, { "id": 16956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -327280,17 +242495,12 @@ }, { "id": 16957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327298,17 +242508,12 @@ }, { "id": 16958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327316,17 +242521,12 @@ }, { "id": 16959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327336,17 +242536,12 @@ }, { "id": 16960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327357,17 +242552,12 @@ }, { "id": 16961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327378,17 +242568,12 @@ }, { "id": 16962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327398,17 +242583,12 @@ }, { "id": 16963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327419,17 +242599,12 @@ }, { "id": 16964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327440,17 +242615,12 @@ }, { "id": 16965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -327458,17 +242628,12 @@ }, { "id": 16966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327477,17 +242642,12 @@ }, { "id": 16967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327496,17 +242656,12 @@ }, { "id": 16968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -327514,17 +242669,12 @@ }, { "id": 16969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327533,17 +242683,12 @@ }, { "id": 16970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327552,17 +242697,12 @@ }, { "id": 16971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327572,17 +242712,12 @@ }, { "id": 16972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327593,17 +242728,12 @@ }, { "id": 16973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327614,17 +242744,12 @@ }, { "id": 16974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327634,17 +242759,12 @@ }, { "id": 16975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327655,17 +242775,12 @@ }, { "id": 16976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327676,17 +242791,12 @@ }, { "id": 16977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -327694,17 +242804,12 @@ }, { "id": 16978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327713,17 +242818,12 @@ }, { "id": 16979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327732,17 +242832,12 @@ }, { "id": 16980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -327750,17 +242845,12 @@ }, { "id": 16981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327769,17 +242859,12 @@ }, { "id": 16982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -327788,17 +242873,12 @@ }, { "id": 16983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327807,17 +242887,12 @@ }, { "id": 16984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327827,17 +242902,12 @@ }, { "id": 16985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327847,17 +242917,12 @@ }, { "id": 16986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -327866,17 +242931,12 @@ }, { "id": 16987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327886,17 +242946,12 @@ }, { "id": 16988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -327906,17 +242961,12 @@ }, { "id": 16989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -327924,17 +242974,12 @@ }, { "id": 16990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327942,17 +242987,12 @@ }, { "id": 16991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327960,17 +243000,12 @@ }, { "id": 16992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -327978,17 +243013,12 @@ }, { "id": 16993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -327996,17 +243026,12 @@ }, { "id": 16994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -328014,17 +243039,12 @@ }, { "id": 16995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -328034,17 +243054,12 @@ }, { "id": 16996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328055,17 +243070,12 @@ }, { "id": 16997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328076,17 +243086,12 @@ }, { "id": 16998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -328096,17 +243101,12 @@ }, { "id": 16999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328117,17 +243117,12 @@ }, { "id": 17000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328138,17 +243133,12 @@ }, { "id": 17001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -328156,17 +243146,12 @@ }, { "id": 17002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328175,17 +243160,12 @@ }, { "id": 17003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328194,17 +243174,12 @@ }, { "id": 17004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -328212,17 +243187,12 @@ }, { "id": 17005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328231,17 +243201,12 @@ }, { "id": 17006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328250,17 +243215,12 @@ }, { "id": 17007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -328270,17 +243230,12 @@ }, { "id": 17008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328291,17 +243246,12 @@ }, { "id": 17009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328312,17 +243262,12 @@ }, { "id": 17010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -328332,17 +243277,12 @@ }, { "id": 17011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328353,17 +243293,12 @@ }, { "id": 17012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328374,17 +243309,12 @@ }, { "id": 17013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -328392,17 +243322,12 @@ }, { "id": 17014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328411,17 +243336,12 @@ }, { "id": 17015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328430,17 +243350,12 @@ }, { "id": 17016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -328448,17 +243363,12 @@ }, { "id": 17017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328467,17 +243377,12 @@ }, { "id": 17018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -328486,17 +243391,12 @@ }, { "id": 17019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -328504,17 +243404,12 @@ }, { "id": 17020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328523,17 +243418,12 @@ }, { "id": 17021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328542,17 +243432,12 @@ }, { "id": 17022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -328560,17 +243445,12 @@ }, { "id": 17023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328579,17 +243459,12 @@ }, { "id": 17024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328598,119 +243473,84 @@ }, { "id": 17025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -328719,17 +243559,12 @@ }, { "id": 17032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328739,17 +243574,12 @@ }, { "id": 17033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328759,17 +243589,12 @@ }, { "id": 17034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -328778,17 +243603,12 @@ }, { "id": 17035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328798,17 +243618,12 @@ }, { "id": 17036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328818,17 +243633,12 @@ }, { "id": 17037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -328836,17 +243646,12 @@ }, { "id": 17038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -328854,17 +243659,12 @@ }, { "id": 17039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -328872,17 +243672,12 @@ }, { "id": 17040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -328890,17 +243685,12 @@ }, { "id": 17041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -328908,17 +243698,12 @@ }, { "id": 17042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -328926,17 +243711,12 @@ }, { "id": 17043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -328945,17 +243725,12 @@ }, { "id": 17044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328965,17 +243740,12 @@ }, { "id": 17045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -328985,17 +243755,12 @@ }, { "id": 17046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -329004,17 +243769,12 @@ }, { "id": 17047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329024,17 +243784,12 @@ }, { "id": 17048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329044,17 +243799,12 @@ }, { "id": 17049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -329062,17 +243812,12 @@ }, { "id": 17050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -329080,17 +243825,12 @@ }, { "id": 17051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -329098,17 +243838,12 @@ }, { "id": 17052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -329116,17 +243851,12 @@ }, { "id": 17053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -329134,17 +243864,12 @@ }, { "id": 17054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -329152,17 +243877,12 @@ }, { "id": 17055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329171,17 +243891,12 @@ }, { "id": 17056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329191,17 +243906,12 @@ }, { "id": 17057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329211,17 +243921,12 @@ }, { "id": 17058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329230,17 +243935,12 @@ }, { "id": 17059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329250,17 +243950,12 @@ }, { "id": 17060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329270,17 +243965,12 @@ }, { "id": 17061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -329288,17 +243978,12 @@ }, { "id": 17062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -329306,17 +243991,12 @@ }, { "id": 17063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -329324,17 +244004,12 @@ }, { "id": 17064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -329342,17 +244017,12 @@ }, { "id": 17065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -329360,17 +244030,12 @@ }, { "id": 17066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -329378,17 +244043,12 @@ }, { "id": 17067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329398,17 +244058,12 @@ }, { "id": 17068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329419,17 +244074,12 @@ }, { "id": 17069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329440,17 +244090,12 @@ }, { "id": 17070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329460,17 +244105,12 @@ }, { "id": 17071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329481,17 +244121,12 @@ }, { "id": 17072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329502,17 +244137,12 @@ }, { "id": 17073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -329520,17 +244150,12 @@ }, { "id": 17074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329539,17 +244164,12 @@ }, { "id": 17075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329558,17 +244178,12 @@ }, { "id": 17076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -329576,17 +244191,12 @@ }, { "id": 17077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329595,17 +244205,12 @@ }, { "id": 17078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329614,17 +244219,12 @@ }, { "id": 17079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329634,17 +244234,12 @@ }, { "id": 17080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329655,17 +244250,12 @@ }, { "id": 17081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329676,17 +244266,12 @@ }, { "id": 17082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329696,17 +244281,12 @@ }, { "id": 17083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329717,17 +244297,12 @@ }, { "id": 17084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329738,17 +244313,12 @@ }, { "id": 17085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -329756,17 +244326,12 @@ }, { "id": 17086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329775,17 +244340,12 @@ }, { "id": 17087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329794,17 +244354,12 @@ }, { "id": 17088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -329812,17 +244367,12 @@ }, { "id": 17089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329831,17 +244381,12 @@ }, { "id": 17090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -329850,17 +244395,12 @@ }, { "id": 17091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329869,17 +244409,12 @@ }, { "id": 17092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329889,17 +244424,12 @@ }, { "id": 17093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329909,17 +244439,12 @@ }, { "id": 17094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -329928,17 +244453,12 @@ }, { "id": 17095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329948,17 +244468,12 @@ }, { "id": 17096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -329968,17 +244483,12 @@ }, { "id": 17097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -329986,17 +244496,12 @@ }, { "id": 17098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -330004,17 +244509,12 @@ }, { "id": 17099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -330022,17 +244522,12 @@ }, { "id": 17100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -330040,17 +244535,12 @@ }, { "id": 17101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -330058,17 +244548,12 @@ }, { "id": 17102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -330076,17 +244561,12 @@ }, { "id": 17103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -330096,17 +244576,12 @@ }, { "id": 17104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330117,17 +244592,12 @@ }, { "id": 17105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330138,17 +244608,12 @@ }, { "id": 17106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -330158,17 +244623,12 @@ }, { "id": 17107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330179,17 +244639,12 @@ }, { "id": 17108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330200,17 +244655,12 @@ }, { "id": 17109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -330218,17 +244668,12 @@ }, { "id": 17110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330237,17 +244682,12 @@ }, { "id": 17111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330256,17 +244696,12 @@ }, { "id": 17112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -330274,17 +244709,12 @@ }, { "id": 17113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330293,17 +244723,12 @@ }, { "id": 17114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330312,17 +244737,12 @@ }, { "id": 17115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -330332,17 +244752,12 @@ }, { "id": 17116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330353,17 +244768,12 @@ }, { "id": 17117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330374,17 +244784,12 @@ }, { "id": 17118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -330394,17 +244799,12 @@ }, { "id": 17119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330415,17 +244815,12 @@ }, { "id": 17120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -330436,17 +244831,12 @@ }, { "id": 17121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -330454,17 +244844,12 @@ }, { "id": 17122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330473,17 +244858,12 @@ }, { "id": 17123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330492,17 +244872,12 @@ }, { "id": 17124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -330510,17 +244885,12 @@ }, { "id": 17125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330529,17 +244899,12 @@ }, { "id": 17126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -330580,45 +244945,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 17130, "states": [ { "id": 17127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 17128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330627,17 +244982,12 @@ }, { "id": 17129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330646,34 +244996,24 @@ }, { "id": 17130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 17131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330682,17 +245022,12 @@ }, { "id": 17132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330701,115 +245036,80 @@ }, { "id": 17133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 17134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 17137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -330817,17 +245117,12 @@ }, { "id": 17140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330837,17 +245132,12 @@ }, { "id": 17141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330857,17 +245147,12 @@ }, { "id": 17142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -330875,17 +245160,12 @@ }, { "id": 17143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330895,17 +245175,12 @@ }, { "id": 17144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -330915,34 +245190,24 @@ }, { "id": 17145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -330950,17 +245215,12 @@ }, { "id": 17147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -330968,34 +245228,24 @@ }, { "id": 17148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -331003,17 +245253,12 @@ }, { "id": 17150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -331021,17 +245266,12 @@ }, { "id": 17151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -331039,17 +245279,12 @@ }, { "id": 17152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331059,17 +245294,12 @@ }, { "id": 17153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331079,17 +245309,12 @@ }, { "id": 17154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -331097,17 +245322,12 @@ }, { "id": 17155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331117,17 +245337,12 @@ }, { "id": 17156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331137,34 +245352,24 @@ }, { "id": 17157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -331172,17 +245377,12 @@ }, { "id": 17159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -331190,34 +245390,24 @@ }, { "id": 17160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -331225,17 +245415,12 @@ }, { "id": 17162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -331243,17 +245428,12 @@ }, { "id": 17163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -331261,17 +245441,12 @@ }, { "id": 17164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331281,17 +245456,12 @@ }, { "id": 17165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331301,17 +245471,12 @@ }, { "id": 17166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -331319,17 +245484,12 @@ }, { "id": 17167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331339,17 +245499,12 @@ }, { "id": 17168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331359,34 +245514,24 @@ }, { "id": 17169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -331394,17 +245539,12 @@ }, { "id": 17171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -331412,34 +245552,24 @@ }, { "id": 17172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -331447,17 +245577,12 @@ }, { "id": 17174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -331465,17 +245590,12 @@ }, { "id": 17175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -331484,17 +245604,12 @@ }, { "id": 17176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331505,17 +245620,12 @@ }, { "id": 17177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331526,17 +245636,12 @@ }, { "id": 17178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -331545,17 +245650,12 @@ }, { "id": 17179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331566,17 +245666,12 @@ }, { "id": 17180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331587,34 +245682,24 @@ }, { "id": 17181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331623,17 +245708,12 @@ }, { "id": 17183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331642,34 +245722,24 @@ }, { "id": 17184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331678,17 +245748,12 @@ }, { "id": 17186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331697,17 +245762,12 @@ }, { "id": 17187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -331716,17 +245776,12 @@ }, { "id": 17188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331737,17 +245792,12 @@ }, { "id": 17189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331758,17 +245808,12 @@ }, { "id": 17190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -331777,17 +245822,12 @@ }, { "id": 17191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331798,17 +245838,12 @@ }, { "id": 17192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331819,34 +245854,24 @@ }, { "id": 17193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331855,17 +245880,12 @@ }, { "id": 17195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331874,34 +245894,24 @@ }, { "id": 17196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331910,17 +245920,12 @@ }, { "id": 17198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -331929,17 +245934,12 @@ }, { "id": 17199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -331947,17 +245947,12 @@ }, { "id": 17200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331967,17 +245962,12 @@ }, { "id": 17201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -331987,17 +245977,12 @@ }, { "id": 17202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -332005,17 +245990,12 @@ }, { "id": 17203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332025,17 +246005,12 @@ }, { "id": 17204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332045,34 +246020,24 @@ }, { "id": 17205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -332080,17 +246045,12 @@ }, { "id": 17207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -332098,34 +246058,24 @@ }, { "id": 17208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -332133,17 +246083,12 @@ }, { "id": 17210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -332151,17 +246096,12 @@ }, { "id": 17211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -332170,17 +246110,12 @@ }, { "id": 17212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332191,17 +246126,12 @@ }, { "id": 17213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332212,17 +246142,12 @@ }, { "id": 17214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -332231,17 +246156,12 @@ }, { "id": 17215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332252,17 +246172,12 @@ }, { "id": 17216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332273,34 +246188,24 @@ }, { "id": 17217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332309,17 +246214,12 @@ }, { "id": 17219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332328,34 +246228,24 @@ }, { "id": 17220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332364,17 +246254,12 @@ }, { "id": 17222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332383,17 +246268,12 @@ }, { "id": 17223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -332402,17 +246282,12 @@ }, { "id": 17224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332423,17 +246298,12 @@ }, { "id": 17225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332444,17 +246314,12 @@ }, { "id": 17226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -332463,17 +246328,12 @@ }, { "id": 17227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332484,17 +246344,12 @@ }, { "id": 17228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -332505,34 +246360,24 @@ }, { "id": 17229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332541,17 +246386,12 @@ }, { "id": 17231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332560,34 +246400,24 @@ }, { "id": 17232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332596,17 +246426,12 @@ }, { "id": 17234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -332615,17 +246440,12 @@ }, { "id": 17235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -332633,17 +246453,12 @@ }, { "id": 17236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332652,17 +246467,12 @@ }, { "id": 17237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332671,17 +246481,12 @@ }, { "id": 17238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -332689,17 +246494,12 @@ }, { "id": 17239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332708,17 +246508,12 @@ }, { "id": 17240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332727,119 +246522,84 @@ }, { "id": 17241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -332848,17 +246608,12 @@ }, { "id": 17248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332868,17 +246623,12 @@ }, { "id": 17249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332888,17 +246638,12 @@ }, { "id": 17250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -332907,17 +246652,12 @@ }, { "id": 17251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332927,17 +246667,12 @@ }, { "id": 17252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -332947,17 +246682,12 @@ }, { "id": 17253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -332965,17 +246695,12 @@ }, { "id": 17254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -332983,17 +246708,12 @@ }, { "id": 17255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333001,17 +246721,12 @@ }, { "id": 17256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -333019,17 +246734,12 @@ }, { "id": 17257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333037,17 +246747,12 @@ }, { "id": 17258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333055,17 +246760,12 @@ }, { "id": 17259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -333074,17 +246774,12 @@ }, { "id": 17260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333094,17 +246789,12 @@ }, { "id": 17261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333114,17 +246804,12 @@ }, { "id": 17262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -333133,17 +246818,12 @@ }, { "id": 17263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333153,17 +246833,12 @@ }, { "id": 17264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333173,17 +246848,12 @@ }, { "id": 17265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -333191,17 +246861,12 @@ }, { "id": 17266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333209,17 +246874,12 @@ }, { "id": 17267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333227,17 +246887,12 @@ }, { "id": 17268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -333245,17 +246900,12 @@ }, { "id": 17269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333263,17 +246913,12 @@ }, { "id": 17270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -333281,17 +246926,12 @@ }, { "id": 17271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333300,17 +246940,12 @@ }, { "id": 17272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333320,17 +246955,12 @@ }, { "id": 17273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333340,17 +246970,12 @@ }, { "id": 17274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333359,17 +246984,12 @@ }, { "id": 17275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333379,17 +246999,12 @@ }, { "id": 17276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333399,17 +247014,12 @@ }, { "id": 17277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -333417,17 +247027,12 @@ }, { "id": 17278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -333435,17 +247040,12 @@ }, { "id": 17279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -333453,17 +247053,12 @@ }, { "id": 17280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -333471,17 +247066,12 @@ }, { "id": 17281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -333489,17 +247079,12 @@ }, { "id": 17282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -333507,17 +247092,12 @@ }, { "id": 17283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333527,17 +247107,12 @@ }, { "id": 17284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333548,17 +247123,12 @@ }, { "id": 17285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333569,17 +247139,12 @@ }, { "id": 17286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333589,17 +247154,12 @@ }, { "id": 17287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333610,17 +247170,12 @@ }, { "id": 17288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333631,17 +247186,12 @@ }, { "id": 17289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -333649,17 +247199,12 @@ }, { "id": 17290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333668,17 +247213,12 @@ }, { "id": 17291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333687,17 +247227,12 @@ }, { "id": 17292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -333705,17 +247240,12 @@ }, { "id": 17293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333724,17 +247254,12 @@ }, { "id": 17294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333743,17 +247268,12 @@ }, { "id": 17295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333763,17 +247283,12 @@ }, { "id": 17296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333784,17 +247299,12 @@ }, { "id": 17297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333805,17 +247315,12 @@ }, { "id": 17298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333825,17 +247330,12 @@ }, { "id": 17299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333846,17 +247346,12 @@ }, { "id": 17300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -333867,17 +247362,12 @@ }, { "id": 17301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -333885,17 +247375,12 @@ }, { "id": 17302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333904,17 +247389,12 @@ }, { "id": 17303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333923,17 +247403,12 @@ }, { "id": 17304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -333941,17 +247416,12 @@ }, { "id": 17305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333960,17 +247430,12 @@ }, { "id": 17306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -333979,17 +247444,12 @@ }, { "id": 17307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -333998,17 +247458,12 @@ }, { "id": 17308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334018,17 +247473,12 @@ }, { "id": 17309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334038,17 +247488,12 @@ }, { "id": 17310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -334057,17 +247502,12 @@ }, { "id": 17311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334077,17 +247517,12 @@ }, { "id": 17312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334097,17 +247532,12 @@ }, { "id": 17313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -334115,17 +247545,12 @@ }, { "id": 17314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -334133,17 +247558,12 @@ }, { "id": 17315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -334151,17 +247571,12 @@ }, { "id": 17316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -334169,17 +247584,12 @@ }, { "id": 17317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -334187,17 +247597,12 @@ }, { "id": 17318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -334205,17 +247610,12 @@ }, { "id": 17319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -334225,17 +247625,12 @@ }, { "id": 17320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334246,17 +247641,12 @@ }, { "id": 17321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334267,17 +247657,12 @@ }, { "id": 17322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -334287,17 +247672,12 @@ }, { "id": 17323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334308,17 +247688,12 @@ }, { "id": 17324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334329,17 +247704,12 @@ }, { "id": 17325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -334347,17 +247717,12 @@ }, { "id": 17326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334366,17 +247731,12 @@ }, { "id": 17327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334385,17 +247745,12 @@ }, { "id": 17328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -334403,17 +247758,12 @@ }, { "id": 17329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334422,17 +247772,12 @@ }, { "id": 17330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334441,17 +247786,12 @@ }, { "id": 17331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -334461,17 +247801,12 @@ }, { "id": 17332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334482,17 +247817,12 @@ }, { "id": 17333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334503,17 +247833,12 @@ }, { "id": 17334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -334523,17 +247848,12 @@ }, { "id": 17335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334544,17 +247864,12 @@ }, { "id": 17336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334565,17 +247880,12 @@ }, { "id": 17337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -334583,17 +247893,12 @@ }, { "id": 17338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334602,17 +247907,12 @@ }, { "id": 17339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334621,17 +247921,12 @@ }, { "id": 17340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -334639,17 +247934,12 @@ }, { "id": 17341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334658,17 +247948,12 @@ }, { "id": 17342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -334677,17 +247962,12 @@ }, { "id": 17343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -334695,17 +247975,12 @@ }, { "id": 17344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334714,17 +247989,12 @@ }, { "id": 17345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334733,17 +248003,12 @@ }, { "id": 17346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -334751,17 +248016,12 @@ }, { "id": 17347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334770,17 +248030,12 @@ }, { "id": 17348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334789,119 +248044,84 @@ }, { "id": 17349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -334910,17 +248130,12 @@ }, { "id": 17356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334930,17 +248145,12 @@ }, { "id": 17357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334950,17 +248160,12 @@ }, { "id": 17358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -334969,17 +248174,12 @@ }, { "id": 17359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -334989,17 +248189,12 @@ }, { "id": 17360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335009,17 +248204,12 @@ }, { "id": 17361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -335027,17 +248217,12 @@ }, { "id": 17362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335045,17 +248230,12 @@ }, { "id": 17363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335063,17 +248243,12 @@ }, { "id": 17364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -335081,17 +248256,12 @@ }, { "id": 17365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335099,17 +248269,12 @@ }, { "id": 17366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335117,17 +248282,12 @@ }, { "id": 17367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -335136,17 +248296,12 @@ }, { "id": 17368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335156,17 +248311,12 @@ }, { "id": 17369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335176,17 +248326,12 @@ }, { "id": 17370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -335195,17 +248340,12 @@ }, { "id": 17371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335215,17 +248355,12 @@ }, { "id": 17372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335235,17 +248370,12 @@ }, { "id": 17373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -335253,17 +248383,12 @@ }, { "id": 17374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335271,17 +248396,12 @@ }, { "id": 17375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335289,17 +248409,12 @@ }, { "id": 17376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -335307,17 +248422,12 @@ }, { "id": 17377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335325,17 +248435,12 @@ }, { "id": 17378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -335343,17 +248448,12 @@ }, { "id": 17379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -335362,17 +248462,12 @@ }, { "id": 17380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335382,17 +248477,12 @@ }, { "id": 17381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335402,17 +248492,12 @@ }, { "id": 17382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -335421,17 +248506,12 @@ }, { "id": 17383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335441,17 +248521,12 @@ }, { "id": 17384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335461,17 +248536,12 @@ }, { "id": 17385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -335479,17 +248549,12 @@ }, { "id": 17386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -335497,17 +248562,12 @@ }, { "id": 17387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -335515,17 +248575,12 @@ }, { "id": 17388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -335533,17 +248588,12 @@ }, { "id": 17389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -335551,17 +248601,12 @@ }, { "id": 17390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -335569,17 +248614,12 @@ }, { "id": 17391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -335589,17 +248629,12 @@ }, { "id": 17392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335610,17 +248645,12 @@ }, { "id": 17393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335631,17 +248661,12 @@ }, { "id": 17394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -335651,17 +248676,12 @@ }, { "id": 17395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335672,17 +248692,12 @@ }, { "id": 17396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335693,17 +248708,12 @@ }, { "id": 17397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -335711,17 +248721,12 @@ }, { "id": 17398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -335730,17 +248735,12 @@ }, { "id": 17399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -335749,17 +248749,12 @@ }, { "id": 17400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -335767,17 +248762,12 @@ }, { "id": 17401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -335786,17 +248776,12 @@ }, { "id": 17402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -335805,17 +248790,12 @@ }, { "id": 17403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -335825,17 +248805,12 @@ }, { "id": 17404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335846,17 +248821,12 @@ }, { "id": 17405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335867,17 +248837,12 @@ }, { "id": 17406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -335887,17 +248852,12 @@ }, { "id": 17407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335908,17 +248868,12 @@ }, { "id": 17408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -335929,17 +248884,12 @@ }, { "id": 17409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -335947,17 +248897,12 @@ }, { "id": 17410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -335966,17 +248911,12 @@ }, { "id": 17411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -335985,17 +248925,12 @@ }, { "id": 17412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -336003,17 +248938,12 @@ }, { "id": 17413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336022,17 +248952,12 @@ }, { "id": 17414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336041,17 +248966,12 @@ }, { "id": 17415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -336060,17 +248980,12 @@ }, { "id": 17416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336080,17 +248995,12 @@ }, { "id": 17417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336100,17 +249010,12 @@ }, { "id": 17418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -336119,17 +249024,12 @@ }, { "id": 17419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336139,17 +249039,12 @@ }, { "id": 17420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336159,17 +249054,12 @@ }, { "id": 17421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -336177,17 +249067,12 @@ }, { "id": 17422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -336195,17 +249080,12 @@ }, { "id": 17423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -336213,17 +249093,12 @@ }, { "id": 17424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -336231,17 +249106,12 @@ }, { "id": 17425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -336249,17 +249119,12 @@ }, { "id": 17426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -336267,17 +249132,12 @@ }, { "id": 17427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -336287,17 +249147,12 @@ }, { "id": 17428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336308,17 +249163,12 @@ }, { "id": 17429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336329,17 +249179,12 @@ }, { "id": 17430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -336349,17 +249194,12 @@ }, { "id": 17431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336370,17 +249210,12 @@ }, { "id": 17432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336391,17 +249226,12 @@ }, { "id": 17433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -336409,17 +249239,12 @@ }, { "id": 17434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336428,17 +249253,12 @@ }, { "id": 17435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336447,17 +249267,12 @@ }, { "id": 17436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -336465,17 +249280,12 @@ }, { "id": 17437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336484,17 +249294,12 @@ }, { "id": 17438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336503,17 +249308,12 @@ }, { "id": 17439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -336523,17 +249323,12 @@ }, { "id": 17440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336544,17 +249339,12 @@ }, { "id": 17441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336565,17 +249355,12 @@ }, { "id": 17442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -336585,17 +249370,12 @@ }, { "id": 17443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336606,17 +249386,12 @@ }, { "id": 17444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -336627,17 +249402,12 @@ }, { "id": 17445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -336645,17 +249415,12 @@ }, { "id": 17446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336664,17 +249429,12 @@ }, { "id": 17447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336683,17 +249443,12 @@ }, { "id": 17448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -336701,17 +249456,12 @@ }, { "id": 17449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336720,17 +249470,12 @@ }, { "id": 17450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -336771,45 +249516,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 17454, "states": [ { "id": 17451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 17452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -336818,17 +249553,12 @@ }, { "id": 17453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -336837,34 +249567,24 @@ }, { "id": 17454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 17455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -336873,17 +249593,12 @@ }, { "id": 17456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -336892,115 +249607,80 @@ }, { "id": 17457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 17458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 17461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -337008,17 +249688,12 @@ }, { "id": 17464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337028,17 +249703,12 @@ }, { "id": 17465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337048,17 +249718,12 @@ }, { "id": 17466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -337066,17 +249731,12 @@ }, { "id": 17467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337086,17 +249746,12 @@ }, { "id": 17468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337106,34 +249761,24 @@ }, { "id": 17469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337141,17 +249786,12 @@ }, { "id": 17471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337159,34 +249799,24 @@ }, { "id": 17472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337194,17 +249824,12 @@ }, { "id": 17474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337212,17 +249837,12 @@ }, { "id": 17475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -337230,17 +249850,12 @@ }, { "id": 17476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337250,17 +249865,12 @@ }, { "id": 17477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337270,17 +249880,12 @@ }, { "id": 17478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -337288,17 +249893,12 @@ }, { "id": 17479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337308,17 +249908,12 @@ }, { "id": 17480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337328,34 +249923,24 @@ }, { "id": 17481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337363,17 +249948,12 @@ }, { "id": 17483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337381,34 +249961,24 @@ }, { "id": 17484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337416,17 +249986,12 @@ }, { "id": 17486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -337434,17 +249999,12 @@ }, { "id": 17487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -337452,17 +250012,12 @@ }, { "id": 17488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337472,17 +250027,12 @@ }, { "id": 17489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337492,17 +250042,12 @@ }, { "id": 17490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -337510,17 +250055,12 @@ }, { "id": 17491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337530,17 +250070,12 @@ }, { "id": 17492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337550,34 +250085,24 @@ }, { "id": 17493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -337585,17 +250110,12 @@ }, { "id": 17495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -337603,34 +250123,24 @@ }, { "id": 17496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -337638,17 +250148,12 @@ }, { "id": 17498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -337656,17 +250161,12 @@ }, { "id": 17499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -337675,17 +250175,12 @@ }, { "id": 17500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337696,17 +250191,12 @@ }, { "id": 17501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337717,17 +250207,12 @@ }, { "id": 17502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -337736,17 +250221,12 @@ }, { "id": 17503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337757,17 +250237,12 @@ }, { "id": 17504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337778,34 +250253,24 @@ }, { "id": 17505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -337814,17 +250279,12 @@ }, { "id": 17507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -337833,34 +250293,24 @@ }, { "id": 17508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -337869,17 +250319,12 @@ }, { "id": 17510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -337888,17 +250333,12 @@ }, { "id": 17511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -337907,17 +250347,12 @@ }, { "id": 17512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337928,17 +250363,12 @@ }, { "id": 17513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337949,17 +250379,12 @@ }, { "id": 17514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -337968,17 +250393,12 @@ }, { "id": 17515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -337989,17 +250409,12 @@ }, { "id": 17516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338010,34 +250425,24 @@ }, { "id": 17517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338046,17 +250451,12 @@ }, { "id": 17519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338065,34 +250465,24 @@ }, { "id": 17520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338101,17 +250491,12 @@ }, { "id": 17522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338120,17 +250505,12 @@ }, { "id": 17523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -338138,17 +250518,12 @@ }, { "id": 17524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338158,17 +250533,12 @@ }, { "id": 17525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338178,17 +250548,12 @@ }, { "id": 17526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -338196,17 +250561,12 @@ }, { "id": 17527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338216,17 +250576,12 @@ }, { "id": 17528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338236,34 +250591,24 @@ }, { "id": 17529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -338271,17 +250616,12 @@ }, { "id": 17531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -338289,34 +250629,24 @@ }, { "id": 17532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -338324,17 +250654,12 @@ }, { "id": 17534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -338342,17 +250667,12 @@ }, { "id": 17535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -338361,17 +250681,12 @@ }, { "id": 17536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338382,17 +250697,12 @@ }, { "id": 17537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338403,17 +250713,12 @@ }, { "id": 17538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -338422,17 +250727,12 @@ }, { "id": 17539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338443,17 +250743,12 @@ }, { "id": 17540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338464,34 +250759,24 @@ }, { "id": 17541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338500,17 +250785,12 @@ }, { "id": 17543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338519,34 +250799,24 @@ }, { "id": 17544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338555,17 +250825,12 @@ }, { "id": 17546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338574,17 +250839,12 @@ }, { "id": 17547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -338593,17 +250853,12 @@ }, { "id": 17548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338614,17 +250869,12 @@ }, { "id": 17549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338635,17 +250885,12 @@ }, { "id": 17550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -338654,17 +250899,12 @@ }, { "id": 17551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338675,17 +250915,12 @@ }, { "id": 17552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -338696,34 +250931,24 @@ }, { "id": 17553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338732,17 +250957,12 @@ }, { "id": 17555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338751,34 +250971,24 @@ }, { "id": 17556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338787,17 +250997,12 @@ }, { "id": 17558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -338806,17 +251011,12 @@ }, { "id": 17559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -338824,17 +251024,12 @@ }, { "id": 17560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -338843,17 +251038,12 @@ }, { "id": 17561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -338862,17 +251052,12 @@ }, { "id": 17562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -338880,17 +251065,12 @@ }, { "id": 17563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -338899,17 +251079,12 @@ }, { "id": 17564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -338918,119 +251093,84 @@ }, { "id": 17565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -339039,17 +251179,12 @@ }, { "id": 17572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339059,17 +251194,12 @@ }, { "id": 17573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339079,17 +251209,12 @@ }, { "id": 17574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -339098,17 +251223,12 @@ }, { "id": 17575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339118,17 +251238,12 @@ }, { "id": 17576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339138,17 +251253,12 @@ }, { "id": 17577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -339156,17 +251266,12 @@ }, { "id": 17578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339174,17 +251279,12 @@ }, { "id": 17579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339192,17 +251292,12 @@ }, { "id": 17580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -339210,17 +251305,12 @@ }, { "id": 17581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339228,17 +251318,12 @@ }, { "id": 17582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339246,17 +251331,12 @@ }, { "id": 17583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -339265,17 +251345,12 @@ }, { "id": 17584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339285,17 +251360,12 @@ }, { "id": 17585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339305,17 +251375,12 @@ }, { "id": 17586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -339324,17 +251389,12 @@ }, { "id": 17587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339344,17 +251404,12 @@ }, { "id": 17588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339364,17 +251419,12 @@ }, { "id": 17589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -339382,17 +251432,12 @@ }, { "id": 17590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339400,17 +251445,12 @@ }, { "id": 17591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339418,17 +251458,12 @@ }, { "id": 17592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -339436,17 +251471,12 @@ }, { "id": 17593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339454,17 +251484,12 @@ }, { "id": 17594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -339472,17 +251497,12 @@ }, { "id": 17595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -339491,17 +251511,12 @@ }, { "id": 17596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339511,17 +251526,12 @@ }, { "id": 17597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339531,17 +251541,12 @@ }, { "id": 17598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -339550,17 +251555,12 @@ }, { "id": 17599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339570,17 +251570,12 @@ }, { "id": 17600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339590,17 +251585,12 @@ }, { "id": 17601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -339608,17 +251598,12 @@ }, { "id": 17602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -339626,17 +251611,12 @@ }, { "id": 17603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -339644,17 +251624,12 @@ }, { "id": 17604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -339662,17 +251637,12 @@ }, { "id": 17605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -339680,17 +251650,12 @@ }, { "id": 17606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -339698,17 +251663,12 @@ }, { "id": 17607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -339718,17 +251678,12 @@ }, { "id": 17608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339739,17 +251694,12 @@ }, { "id": 17609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339760,17 +251710,12 @@ }, { "id": 17610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -339780,17 +251725,12 @@ }, { "id": 17611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339801,17 +251741,12 @@ }, { "id": 17612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339822,17 +251757,12 @@ }, { "id": 17613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -339840,17 +251770,12 @@ }, { "id": 17614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -339859,17 +251784,12 @@ }, { "id": 17615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -339878,17 +251798,12 @@ }, { "id": 17616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -339896,17 +251811,12 @@ }, { "id": 17617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -339915,17 +251825,12 @@ }, { "id": 17618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -339934,17 +251839,12 @@ }, { "id": 17619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -339954,17 +251854,12 @@ }, { "id": 17620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339975,17 +251870,12 @@ }, { "id": 17621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -339996,17 +251886,12 @@ }, { "id": 17622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340016,17 +251901,12 @@ }, { "id": 17623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340037,17 +251917,12 @@ }, { "id": 17624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340058,17 +251933,12 @@ }, { "id": 17625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -340076,17 +251946,12 @@ }, { "id": 17626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340095,17 +251960,12 @@ }, { "id": 17627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340114,17 +251974,12 @@ }, { "id": 17628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -340132,17 +251987,12 @@ }, { "id": 17629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340151,17 +252001,12 @@ }, { "id": 17630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340170,17 +252015,12 @@ }, { "id": 17631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340189,17 +252029,12 @@ }, { "id": 17632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340209,17 +252044,12 @@ }, { "id": 17633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340229,17 +252059,12 @@ }, { "id": 17634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340248,17 +252073,12 @@ }, { "id": 17635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340268,17 +252088,12 @@ }, { "id": 17636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340288,17 +252103,12 @@ }, { "id": 17637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -340306,17 +252116,12 @@ }, { "id": 17638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -340324,17 +252129,12 @@ }, { "id": 17639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -340342,17 +252142,12 @@ }, { "id": 17640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -340360,17 +252155,12 @@ }, { "id": 17641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -340378,17 +252168,12 @@ }, { "id": 17642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -340396,17 +252181,12 @@ }, { "id": 17643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340416,17 +252196,12 @@ }, { "id": 17644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340437,17 +252212,12 @@ }, { "id": 17645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340458,17 +252228,12 @@ }, { "id": 17646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340478,17 +252243,12 @@ }, { "id": 17647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340499,17 +252259,12 @@ }, { "id": 17648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340520,17 +252275,12 @@ }, { "id": 17649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -340538,17 +252288,12 @@ }, { "id": 17650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340557,17 +252302,12 @@ }, { "id": 17651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340576,17 +252316,12 @@ }, { "id": 17652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -340594,17 +252329,12 @@ }, { "id": 17653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340613,17 +252343,12 @@ }, { "id": 17654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340632,17 +252357,12 @@ }, { "id": 17655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340652,17 +252372,12 @@ }, { "id": 17656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340673,17 +252388,12 @@ }, { "id": 17657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340694,17 +252404,12 @@ }, { "id": 17658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -340714,17 +252419,12 @@ }, { "id": 17659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340735,17 +252435,12 @@ }, { "id": 17660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340756,17 +252451,12 @@ }, { "id": 17661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -340774,17 +252464,12 @@ }, { "id": 17662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340793,17 +252478,12 @@ }, { "id": 17663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340812,17 +252492,12 @@ }, { "id": 17664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -340830,17 +252505,12 @@ }, { "id": 17665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340849,17 +252519,12 @@ }, { "id": 17666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -340868,17 +252533,12 @@ }, { "id": 17667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -340886,17 +252546,12 @@ }, { "id": 17668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340905,17 +252560,12 @@ }, { "id": 17669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340924,17 +252574,12 @@ }, { "id": 17670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -340942,17 +252587,12 @@ }, { "id": 17671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340961,17 +252601,12 @@ }, { "id": 17672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -340980,119 +252615,84 @@ }, { "id": 17673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -341101,17 +252701,12 @@ }, { "id": 17680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341121,17 +252716,12 @@ }, { "id": 17681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341141,17 +252731,12 @@ }, { "id": 17682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -341160,17 +252745,12 @@ }, { "id": 17683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341180,17 +252760,12 @@ }, { "id": 17684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341200,17 +252775,12 @@ }, { "id": 17685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -341218,17 +252788,12 @@ }, { "id": 17686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341236,17 +252801,12 @@ }, { "id": 17687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341254,17 +252814,12 @@ }, { "id": 17688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -341272,17 +252827,12 @@ }, { "id": 17689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341290,17 +252840,12 @@ }, { "id": 17690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341308,17 +252853,12 @@ }, { "id": 17691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -341327,17 +252867,12 @@ }, { "id": 17692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341347,17 +252882,12 @@ }, { "id": 17693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341367,17 +252897,12 @@ }, { "id": 17694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -341386,17 +252911,12 @@ }, { "id": 17695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341406,17 +252926,12 @@ }, { "id": 17696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341426,17 +252941,12 @@ }, { "id": 17697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -341444,17 +252954,12 @@ }, { "id": 17698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341462,17 +252967,12 @@ }, { "id": 17699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341480,17 +252980,12 @@ }, { "id": 17700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -341498,17 +252993,12 @@ }, { "id": 17701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341516,17 +253006,12 @@ }, { "id": 17702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -341534,17 +253019,12 @@ }, { "id": 17703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -341553,17 +253033,12 @@ }, { "id": 17704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341573,17 +253048,12 @@ }, { "id": 17705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341593,17 +253063,12 @@ }, { "id": 17706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -341612,17 +253077,12 @@ }, { "id": 17707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341632,17 +253092,12 @@ }, { "id": 17708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341652,17 +253107,12 @@ }, { "id": 17709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -341670,17 +253120,12 @@ }, { "id": 17710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -341688,17 +253133,12 @@ }, { "id": 17711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -341706,17 +253146,12 @@ }, { "id": 17712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -341724,17 +253159,12 @@ }, { "id": 17713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -341742,17 +253172,12 @@ }, { "id": 17714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -341760,17 +253185,12 @@ }, { "id": 17715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -341780,17 +253200,12 @@ }, { "id": 17716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341801,17 +253216,12 @@ }, { "id": 17717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341822,17 +253232,12 @@ }, { "id": 17718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -341842,17 +253247,12 @@ }, { "id": 17719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341863,17 +253263,12 @@ }, { "id": 17720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -341884,17 +253279,12 @@ }, { "id": 17721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -341902,17 +253292,12 @@ }, { "id": 17722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -341921,17 +253306,12 @@ }, { "id": 17723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -341940,17 +253320,12 @@ }, { "id": 17724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -341958,17 +253333,12 @@ }, { "id": 17725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -341977,17 +253347,12 @@ }, { "id": 17726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -341996,17 +253361,12 @@ }, { "id": 17727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342016,17 +253376,12 @@ }, { "id": 17728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342037,17 +253392,12 @@ }, { "id": 17729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342058,17 +253408,12 @@ }, { "id": 17730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342078,17 +253423,12 @@ }, { "id": 17731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342099,17 +253439,12 @@ }, { "id": 17732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342120,17 +253455,12 @@ }, { "id": 17733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -342138,17 +253468,12 @@ }, { "id": 17734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342157,17 +253482,12 @@ }, { "id": 17735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342176,17 +253496,12 @@ }, { "id": 17736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -342194,17 +253509,12 @@ }, { "id": 17737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342213,17 +253523,12 @@ }, { "id": 17738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342232,17 +253537,12 @@ }, { "id": 17739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342251,17 +253551,12 @@ }, { "id": 17740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342271,17 +253566,12 @@ }, { "id": 17741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342291,17 +253581,12 @@ }, { "id": 17742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342310,17 +253595,12 @@ }, { "id": 17743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342330,17 +253610,12 @@ }, { "id": 17744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342350,17 +253625,12 @@ }, { "id": 17745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -342368,17 +253638,12 @@ }, { "id": 17746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -342386,17 +253651,12 @@ }, { "id": 17747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -342404,17 +253664,12 @@ }, { "id": 17748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -342422,17 +253677,12 @@ }, { "id": 17749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -342440,17 +253690,12 @@ }, { "id": 17750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -342458,17 +253703,12 @@ }, { "id": 17751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342478,17 +253718,12 @@ }, { "id": 17752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342499,17 +253734,12 @@ }, { "id": 17753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342520,17 +253750,12 @@ }, { "id": 17754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342540,17 +253765,12 @@ }, { "id": 17755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342561,17 +253781,12 @@ }, { "id": 17756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342582,17 +253797,12 @@ }, { "id": 17757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -342600,17 +253810,12 @@ }, { "id": 17758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342619,17 +253824,12 @@ }, { "id": 17759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342638,17 +253838,12 @@ }, { "id": 17760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -342656,17 +253851,12 @@ }, { "id": 17761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342675,17 +253865,12 @@ }, { "id": 17762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342694,17 +253879,12 @@ }, { "id": 17763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342714,17 +253894,12 @@ }, { "id": 17764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342735,17 +253910,12 @@ }, { "id": 17765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342756,17 +253926,12 @@ }, { "id": 17766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -342776,17 +253941,12 @@ }, { "id": 17767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342797,17 +253957,12 @@ }, { "id": 17768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -342818,17 +253973,12 @@ }, { "id": 17769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -342836,17 +253986,12 @@ }, { "id": 17770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342855,17 +254000,12 @@ }, { "id": 17771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342874,17 +254014,12 @@ }, { "id": 17772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -342892,17 +254027,12 @@ }, { "id": 17773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342911,17 +254041,12 @@ }, { "id": 17774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -342962,45 +254087,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 17778, "states": [ { "id": 17775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 17776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343009,17 +254124,12 @@ }, { "id": 17777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343028,34 +254138,24 @@ }, { "id": 17778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 17779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343064,17 +254164,12 @@ }, { "id": 17780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343083,115 +254178,80 @@ }, { "id": 17781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 17782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 17785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 17787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -343199,17 +254259,12 @@ }, { "id": 17788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343219,17 +254274,12 @@ }, { "id": 17789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343239,17 +254289,12 @@ }, { "id": 17790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -343257,17 +254302,12 @@ }, { "id": 17791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343277,17 +254317,12 @@ }, { "id": 17792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343297,34 +254332,24 @@ }, { "id": 17793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343332,17 +254357,12 @@ }, { "id": 17795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343350,34 +254370,24 @@ }, { "id": 17796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343385,17 +254395,12 @@ }, { "id": 17798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343403,17 +254408,12 @@ }, { "id": 17799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -343421,17 +254421,12 @@ }, { "id": 17800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343441,17 +254436,12 @@ }, { "id": 17801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343461,17 +254451,12 @@ }, { "id": 17802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -343479,17 +254464,12 @@ }, { "id": 17803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343499,17 +254479,12 @@ }, { "id": 17804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343519,34 +254494,24 @@ }, { "id": 17805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343554,17 +254519,12 @@ }, { "id": 17807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343572,34 +254532,24 @@ }, { "id": 17808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 17809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343607,17 +254557,12 @@ }, { "id": 17810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -343625,17 +254570,12 @@ }, { "id": 17811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -343643,17 +254583,12 @@ }, { "id": 17812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343663,17 +254598,12 @@ }, { "id": 17813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343683,17 +254613,12 @@ }, { "id": 17814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -343701,17 +254626,12 @@ }, { "id": 17815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343721,17 +254641,12 @@ }, { "id": 17816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343741,34 +254656,24 @@ }, { "id": 17817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -343776,17 +254681,12 @@ }, { "id": 17819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -343794,34 +254694,24 @@ }, { "id": 17820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -343829,17 +254719,12 @@ }, { "id": 17822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -343847,17 +254732,12 @@ }, { "id": 17823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -343866,17 +254746,12 @@ }, { "id": 17824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343887,17 +254762,12 @@ }, { "id": 17825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343908,17 +254778,12 @@ }, { "id": 17826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -343927,17 +254792,12 @@ }, { "id": 17827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343948,17 +254808,12 @@ }, { "id": 17828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -343969,34 +254824,24 @@ }, { "id": 17829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344005,17 +254850,12 @@ }, { "id": 17831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344024,34 +254864,24 @@ }, { "id": 17832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344060,17 +254890,12 @@ }, { "id": 17834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344079,17 +254904,12 @@ }, { "id": 17835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -344098,17 +254918,12 @@ }, { "id": 17836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344119,17 +254934,12 @@ }, { "id": 17837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344140,17 +254950,12 @@ }, { "id": 17838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -344159,17 +254964,12 @@ }, { "id": 17839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344180,17 +254980,12 @@ }, { "id": 17840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344201,34 +254996,24 @@ }, { "id": 17841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344237,17 +255022,12 @@ }, { "id": 17843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344256,34 +255036,24 @@ }, { "id": 17844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344292,17 +255062,12 @@ }, { "id": 17846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344311,17 +255076,12 @@ }, { "id": 17847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -344329,17 +255089,12 @@ }, { "id": 17848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344349,17 +255104,12 @@ }, { "id": 17849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344369,17 +255119,12 @@ }, { "id": 17850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -344387,17 +255132,12 @@ }, { "id": 17851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344407,17 +255147,12 @@ }, { "id": 17852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344427,34 +255162,24 @@ }, { "id": 17853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -344462,17 +255187,12 @@ }, { "id": 17855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -344480,34 +255200,24 @@ }, { "id": 17856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 17857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -344515,17 +255225,12 @@ }, { "id": 17858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -344533,17 +255238,12 @@ }, { "id": 17859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -344552,17 +255252,12 @@ }, { "id": 17860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344573,17 +255268,12 @@ }, { "id": 17861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344594,17 +255284,12 @@ }, { "id": 17862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -344613,17 +255298,12 @@ }, { "id": 17863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344634,17 +255314,12 @@ }, { "id": 17864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344655,34 +255330,24 @@ }, { "id": 17865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344691,17 +255356,12 @@ }, { "id": 17867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344710,34 +255370,24 @@ }, { "id": 17868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344746,17 +255396,12 @@ }, { "id": 17870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344765,17 +255410,12 @@ }, { "id": 17871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -344784,17 +255424,12 @@ }, { "id": 17872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344805,17 +255440,12 @@ }, { "id": 17873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344826,17 +255456,12 @@ }, { "id": 17874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -344845,17 +255470,12 @@ }, { "id": 17875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344866,17 +255486,12 @@ }, { "id": 17876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -344887,34 +255502,24 @@ }, { "id": 17877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344923,17 +255528,12 @@ }, { "id": 17879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344942,34 +255542,24 @@ }, { "id": 17880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 17881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344978,17 +255568,12 @@ }, { "id": 17882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -344997,17 +255582,12 @@ }, { "id": 17883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -345015,17 +255595,12 @@ }, { "id": 17884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345034,17 +255609,12 @@ }, { "id": 17885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345053,17 +255623,12 @@ }, { "id": 17886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -345071,17 +255636,12 @@ }, { "id": 17887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345090,17 +255650,12 @@ }, { "id": 17888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345109,119 +255664,84 @@ }, { "id": 17889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -345230,17 +255750,12 @@ }, { "id": 17896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345250,17 +255765,12 @@ }, { "id": 17897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345270,17 +255780,12 @@ }, { "id": 17898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -345289,17 +255794,12 @@ }, { "id": 17899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345309,17 +255809,12 @@ }, { "id": 17900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345329,17 +255824,12 @@ }, { "id": 17901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -345347,17 +255837,12 @@ }, { "id": 17902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345365,17 +255850,12 @@ }, { "id": 17903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345383,17 +255863,12 @@ }, { "id": 17904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -345401,17 +255876,12 @@ }, { "id": 17905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345419,17 +255889,12 @@ }, { "id": 17906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345437,17 +255902,12 @@ }, { "id": 17907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -345456,17 +255916,12 @@ }, { "id": 17908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345476,17 +255931,12 @@ }, { "id": 17909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345496,17 +255946,12 @@ }, { "id": 17910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -345515,17 +255960,12 @@ }, { "id": 17911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345535,17 +255975,12 @@ }, { "id": 17912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345555,17 +255990,12 @@ }, { "id": 17913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -345573,17 +256003,12 @@ }, { "id": 17914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345591,17 +256016,12 @@ }, { "id": 17915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345609,17 +256029,12 @@ }, { "id": 17916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -345627,17 +256042,12 @@ }, { "id": 17917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345645,17 +256055,12 @@ }, { "id": 17918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -345663,17 +256068,12 @@ }, { "id": 17919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -345682,17 +256082,12 @@ }, { "id": 17920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345702,17 +256097,12 @@ }, { "id": 17921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345722,17 +256112,12 @@ }, { "id": 17922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -345741,17 +256126,12 @@ }, { "id": 17923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345761,17 +256141,12 @@ }, { "id": 17924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345781,17 +256156,12 @@ }, { "id": 17925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -345799,17 +256169,12 @@ }, { "id": 17926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -345817,17 +256182,12 @@ }, { "id": 17927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -345835,17 +256195,12 @@ }, { "id": 17928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -345853,17 +256208,12 @@ }, { "id": 17929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -345871,17 +256221,12 @@ }, { "id": 17930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -345889,17 +256234,12 @@ }, { "id": 17931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -345909,17 +256249,12 @@ }, { "id": 17932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345930,17 +256265,12 @@ }, { "id": 17933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345951,17 +256281,12 @@ }, { "id": 17934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -345971,17 +256296,12 @@ }, { "id": 17935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -345992,17 +256312,12 @@ }, { "id": 17936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346013,17 +256328,12 @@ }, { "id": 17937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346031,17 +256341,12 @@ }, { "id": 17938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346050,17 +256355,12 @@ }, { "id": 17939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346069,17 +256369,12 @@ }, { "id": 17940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346087,17 +256382,12 @@ }, { "id": 17941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346106,17 +256396,12 @@ }, { "id": 17942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346125,17 +256410,12 @@ }, { "id": 17943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346145,17 +256425,12 @@ }, { "id": 17944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346166,17 +256441,12 @@ }, { "id": 17945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346187,17 +256457,12 @@ }, { "id": 17946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346207,17 +256472,12 @@ }, { "id": 17947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346228,17 +256488,12 @@ }, { "id": 17948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346249,17 +256504,12 @@ }, { "id": 17949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346267,17 +256517,12 @@ }, { "id": 17950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346286,17 +256531,12 @@ }, { "id": 17951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346305,17 +256545,12 @@ }, { "id": 17952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346323,17 +256558,12 @@ }, { "id": 17953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346342,17 +256572,12 @@ }, { "id": 17954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346361,17 +256586,12 @@ }, { "id": 17955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346380,17 +256600,12 @@ }, { "id": 17956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346400,17 +256615,12 @@ }, { "id": 17957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346420,17 +256630,12 @@ }, { "id": 17958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346439,17 +256644,12 @@ }, { "id": 17959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346459,17 +256659,12 @@ }, { "id": 17960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346479,17 +256674,12 @@ }, { "id": 17961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -346497,17 +256687,12 @@ }, { "id": 17962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -346515,17 +256700,12 @@ }, { "id": 17963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -346533,17 +256713,12 @@ }, { "id": 17964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -346551,17 +256726,12 @@ }, { "id": 17965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -346569,17 +256739,12 @@ }, { "id": 17966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -346587,17 +256752,12 @@ }, { "id": 17967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346607,17 +256767,12 @@ }, { "id": 17968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346628,17 +256783,12 @@ }, { "id": 17969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346649,17 +256799,12 @@ }, { "id": 17970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346669,17 +256814,12 @@ }, { "id": 17971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346690,17 +256830,12 @@ }, { "id": 17972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346711,17 +256846,12 @@ }, { "id": 17973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346729,17 +256859,12 @@ }, { "id": 17974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346748,17 +256873,12 @@ }, { "id": 17975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346767,17 +256887,12 @@ }, { "id": 17976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346785,17 +256900,12 @@ }, { "id": 17977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346804,17 +256914,12 @@ }, { "id": 17978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346823,17 +256928,12 @@ }, { "id": 17979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346843,17 +256943,12 @@ }, { "id": 17980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346864,17 +256959,12 @@ }, { "id": 17981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346885,17 +256975,12 @@ }, { "id": 17982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -346905,17 +256990,12 @@ }, { "id": 17983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346926,17 +257006,12 @@ }, { "id": 17984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -346947,17 +257022,12 @@ }, { "id": 17985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -346965,17 +257035,12 @@ }, { "id": 17986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -346984,17 +257049,12 @@ }, { "id": 17987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -347003,17 +257063,12 @@ }, { "id": 17988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -347021,17 +257076,12 @@ }, { "id": 17989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -347040,17 +257090,12 @@ }, { "id": 17990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -347059,17 +257104,12 @@ }, { "id": 17991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -347077,17 +257117,12 @@ }, { "id": 17992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347096,17 +257131,12 @@ }, { "id": 17993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347115,17 +257145,12 @@ }, { "id": 17994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -347133,17 +257158,12 @@ }, { "id": 17995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347152,17 +257172,12 @@ }, { "id": 17996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347171,119 +257186,84 @@ }, { "id": 17997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 17998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 17999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -347292,17 +257272,12 @@ }, { "id": 18004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347312,17 +257287,12 @@ }, { "id": 18005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347332,17 +257302,12 @@ }, { "id": 18006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -347351,17 +257316,12 @@ }, { "id": 18007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347371,17 +257331,12 @@ }, { "id": 18008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347391,17 +257346,12 @@ }, { "id": 18009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -347409,17 +257359,12 @@ }, { "id": 18010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347427,17 +257372,12 @@ }, { "id": 18011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347445,17 +257385,12 @@ }, { "id": 18012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -347463,17 +257398,12 @@ }, { "id": 18013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347481,17 +257411,12 @@ }, { "id": 18014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347499,17 +257424,12 @@ }, { "id": 18015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -347518,17 +257438,12 @@ }, { "id": 18016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347538,17 +257453,12 @@ }, { "id": 18017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347558,17 +257468,12 @@ }, { "id": 18018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -347577,17 +257482,12 @@ }, { "id": 18019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347597,17 +257497,12 @@ }, { "id": 18020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347617,17 +257512,12 @@ }, { "id": 18021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -347635,17 +257525,12 @@ }, { "id": 18022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347653,17 +257538,12 @@ }, { "id": 18023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347671,17 +257551,12 @@ }, { "id": 18024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -347689,17 +257564,12 @@ }, { "id": 18025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347707,17 +257577,12 @@ }, { "id": 18026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -347725,17 +257590,12 @@ }, { "id": 18027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -347744,17 +257604,12 @@ }, { "id": 18028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347764,17 +257619,12 @@ }, { "id": 18029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347784,17 +257634,12 @@ }, { "id": 18030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -347803,17 +257648,12 @@ }, { "id": 18031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347823,17 +257663,12 @@ }, { "id": 18032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347843,17 +257678,12 @@ }, { "id": 18033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -347861,17 +257691,12 @@ }, { "id": 18034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -347879,17 +257704,12 @@ }, { "id": 18035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -347897,17 +257717,12 @@ }, { "id": 18036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -347915,17 +257730,12 @@ }, { "id": 18037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -347933,17 +257743,12 @@ }, { "id": 18038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -347951,17 +257756,12 @@ }, { "id": 18039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -347971,17 +257771,12 @@ }, { "id": 18040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -347992,17 +257787,12 @@ }, { "id": 18041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348013,17 +257803,12 @@ }, { "id": 18042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348033,17 +257818,12 @@ }, { "id": 18043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348054,17 +257834,12 @@ }, { "id": 18044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348075,17 +257850,12 @@ }, { "id": 18045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -348093,17 +257863,12 @@ }, { "id": 18046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348112,17 +257877,12 @@ }, { "id": 18047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348131,17 +257891,12 @@ }, { "id": 18048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -348149,17 +257904,12 @@ }, { "id": 18049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348168,17 +257918,12 @@ }, { "id": 18050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348187,17 +257932,12 @@ }, { "id": 18051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348207,17 +257947,12 @@ }, { "id": 18052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348228,17 +257963,12 @@ }, { "id": 18053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348249,17 +257979,12 @@ }, { "id": 18054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348269,17 +257994,12 @@ }, { "id": 18055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348290,17 +258010,12 @@ }, { "id": 18056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348311,17 +258026,12 @@ }, { "id": 18057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -348329,17 +258039,12 @@ }, { "id": 18058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348348,17 +258053,12 @@ }, { "id": 18059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348367,17 +258067,12 @@ }, { "id": 18060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -348385,17 +258080,12 @@ }, { "id": 18061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348404,17 +258094,12 @@ }, { "id": 18062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348423,17 +258108,12 @@ }, { "id": 18063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348442,17 +258122,12 @@ }, { "id": 18064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348462,17 +258137,12 @@ }, { "id": 18065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348482,17 +258152,12 @@ }, { "id": 18066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348501,17 +258166,12 @@ }, { "id": 18067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348521,17 +258181,12 @@ }, { "id": 18068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348541,17 +258196,12 @@ }, { "id": 18069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -348559,17 +258209,12 @@ }, { "id": 18070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -348577,17 +258222,12 @@ }, { "id": 18071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -348595,17 +258235,12 @@ }, { "id": 18072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -348613,17 +258248,12 @@ }, { "id": 18073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -348631,17 +258261,12 @@ }, { "id": 18074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -348649,17 +258274,12 @@ }, { "id": 18075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348669,17 +258289,12 @@ }, { "id": 18076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348690,17 +258305,12 @@ }, { "id": 18077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348711,17 +258321,12 @@ }, { "id": 18078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348731,17 +258336,12 @@ }, { "id": 18079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348752,17 +258352,12 @@ }, { "id": 18080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348773,17 +258368,12 @@ }, { "id": 18081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -348791,17 +258381,12 @@ }, { "id": 18082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348810,17 +258395,12 @@ }, { "id": 18083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348829,17 +258409,12 @@ }, { "id": 18084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -348847,17 +258422,12 @@ }, { "id": 18085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348866,17 +258436,12 @@ }, { "id": 18086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -348885,17 +258450,12 @@ }, { "id": 18087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348905,17 +258465,12 @@ }, { "id": 18088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348926,17 +258481,12 @@ }, { "id": 18089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348947,17 +258497,12 @@ }, { "id": 18090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -348967,17 +258512,12 @@ }, { "id": 18091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -348988,17 +258528,12 @@ }, { "id": 18092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -349009,17 +258544,12 @@ }, { "id": 18093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -349027,17 +258557,12 @@ }, { "id": 18094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -349046,17 +258571,12 @@ }, { "id": 18095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -349065,17 +258585,12 @@ }, { "id": 18096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -349083,17 +258598,12 @@ }, { "id": 18097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -349102,17 +258612,12 @@ }, { "id": 18098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -349153,45 +258658,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 18102, "states": [ { "id": 18099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 18100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349200,17 +258695,12 @@ }, { "id": 18101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349219,34 +258709,24 @@ }, { "id": 18102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 18103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349255,17 +258735,12 @@ }, { "id": 18104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349274,115 +258749,80 @@ }, { "id": 18105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 18106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 18109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -349390,17 +258830,12 @@ }, { "id": 18112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349410,17 +258845,12 @@ }, { "id": 18113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349430,17 +258860,12 @@ }, { "id": 18114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -349448,17 +258873,12 @@ }, { "id": 18115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349468,17 +258888,12 @@ }, { "id": 18116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349488,34 +258903,24 @@ }, { "id": 18117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349523,17 +258928,12 @@ }, { "id": 18119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349541,34 +258941,24 @@ }, { "id": 18120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349576,17 +258966,12 @@ }, { "id": 18122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349594,17 +258979,12 @@ }, { "id": 18123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -349612,17 +258992,12 @@ }, { "id": 18124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349632,17 +259007,12 @@ }, { "id": 18125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349652,17 +259022,12 @@ }, { "id": 18126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -349670,17 +259035,12 @@ }, { "id": 18127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349690,17 +259050,12 @@ }, { "id": 18128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349710,34 +259065,24 @@ }, { "id": 18129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349745,17 +259090,12 @@ }, { "id": 18131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349763,34 +259103,24 @@ }, { "id": 18132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349798,17 +259128,12 @@ }, { "id": 18134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -349816,17 +259141,12 @@ }, { "id": 18135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -349834,17 +259154,12 @@ }, { "id": 18136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349854,17 +259169,12 @@ }, { "id": 18137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349874,17 +259184,12 @@ }, { "id": 18138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -349892,17 +259197,12 @@ }, { "id": 18139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349912,17 +259212,12 @@ }, { "id": 18140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -349932,34 +259227,24 @@ }, { "id": 18141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -349967,17 +259252,12 @@ }, { "id": 18143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -349985,34 +259265,24 @@ }, { "id": 18144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -350020,17 +259290,12 @@ }, { "id": 18146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -350038,17 +259303,12 @@ }, { "id": 18147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350057,17 +259317,12 @@ }, { "id": 18148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350078,17 +259333,12 @@ }, { "id": 18149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350099,17 +259349,12 @@ }, { "id": 18150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350118,17 +259363,12 @@ }, { "id": 18151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350139,17 +259379,12 @@ }, { "id": 18152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350160,34 +259395,24 @@ }, { "id": 18153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350196,17 +259421,12 @@ }, { "id": 18155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350215,34 +259435,24 @@ }, { "id": 18156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350251,17 +259461,12 @@ }, { "id": 18158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350270,17 +259475,12 @@ }, { "id": 18159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350289,17 +259489,12 @@ }, { "id": 18160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350310,17 +259505,12 @@ }, { "id": 18161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350331,17 +259521,12 @@ }, { "id": 18162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350350,17 +259535,12 @@ }, { "id": 18163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350371,17 +259551,12 @@ }, { "id": 18164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350392,34 +259567,24 @@ }, { "id": 18165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350428,17 +259593,12 @@ }, { "id": 18167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350447,34 +259607,24 @@ }, { "id": 18168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350483,17 +259633,12 @@ }, { "id": 18170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350502,17 +259647,12 @@ }, { "id": 18171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -350520,17 +259660,12 @@ }, { "id": 18172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350540,17 +259675,12 @@ }, { "id": 18173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350560,17 +259690,12 @@ }, { "id": 18174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -350578,17 +259703,12 @@ }, { "id": 18175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350598,17 +259718,12 @@ }, { "id": 18176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350618,34 +259733,24 @@ }, { "id": 18177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -350653,17 +259758,12 @@ }, { "id": 18179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -350671,34 +259771,24 @@ }, { "id": 18180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -350706,17 +259796,12 @@ }, { "id": 18182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -350724,17 +259809,12 @@ }, { "id": 18183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350743,17 +259823,12 @@ }, { "id": 18184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350764,17 +259839,12 @@ }, { "id": 18185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350785,17 +259855,12 @@ }, { "id": 18186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350804,17 +259869,12 @@ }, { "id": 18187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350825,17 +259885,12 @@ }, { "id": 18188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350846,34 +259901,24 @@ }, { "id": 18189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350882,17 +259927,12 @@ }, { "id": 18191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350901,34 +259941,24 @@ }, { "id": 18192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350937,17 +259967,12 @@ }, { "id": 18194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -350956,17 +259981,12 @@ }, { "id": 18195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -350975,17 +259995,12 @@ }, { "id": 18196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -350996,17 +260011,12 @@ }, { "id": 18197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -351017,17 +260027,12 @@ }, { "id": 18198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -351036,17 +260041,12 @@ }, { "id": 18199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -351057,17 +260057,12 @@ }, { "id": 18200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -351078,34 +260073,24 @@ }, { "id": 18201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -351114,17 +260099,12 @@ }, { "id": 18203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -351133,34 +260113,24 @@ }, { "id": 18204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -351169,17 +260139,12 @@ }, { "id": 18206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -351188,17 +260153,12 @@ }, { "id": 18207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -351206,17 +260166,12 @@ }, { "id": 18208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351225,17 +260180,12 @@ }, { "id": 18209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351244,17 +260194,12 @@ }, { "id": 18210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -351262,17 +260207,12 @@ }, { "id": 18211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351281,17 +260221,12 @@ }, { "id": 18212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351300,119 +260235,84 @@ }, { "id": 18213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -351421,17 +260321,12 @@ }, { "id": 18220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351441,17 +260336,12 @@ }, { "id": 18221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351461,17 +260351,12 @@ }, { "id": 18222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -351480,17 +260365,12 @@ }, { "id": 18223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351500,17 +260380,12 @@ }, { "id": 18224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351520,17 +260395,12 @@ }, { "id": 18225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -351538,17 +260408,12 @@ }, { "id": 18226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351556,17 +260421,12 @@ }, { "id": 18227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351574,17 +260434,12 @@ }, { "id": 18228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -351592,17 +260447,12 @@ }, { "id": 18229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351610,17 +260460,12 @@ }, { "id": 18230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351628,17 +260473,12 @@ }, { "id": 18231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -351647,17 +260487,12 @@ }, { "id": 18232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351667,17 +260502,12 @@ }, { "id": 18233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351687,17 +260517,12 @@ }, { "id": 18234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -351706,17 +260531,12 @@ }, { "id": 18235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351726,17 +260546,12 @@ }, { "id": 18236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351746,17 +260561,12 @@ }, { "id": 18237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -351764,17 +260574,12 @@ }, { "id": 18238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351782,17 +260587,12 @@ }, { "id": 18239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351800,17 +260600,12 @@ }, { "id": 18240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -351818,17 +260613,12 @@ }, { "id": 18241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351836,17 +260626,12 @@ }, { "id": 18242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -351854,17 +260639,12 @@ }, { "id": 18243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -351873,17 +260653,12 @@ }, { "id": 18244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351893,17 +260668,12 @@ }, { "id": 18245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351913,17 +260683,12 @@ }, { "id": 18246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -351932,17 +260697,12 @@ }, { "id": 18247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351952,17 +260712,12 @@ }, { "id": 18248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -351972,17 +260727,12 @@ }, { "id": 18249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -351990,17 +260740,12 @@ }, { "id": 18250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352008,17 +260753,12 @@ }, { "id": 18251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352026,17 +260766,12 @@ }, { "id": 18252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -352044,17 +260779,12 @@ }, { "id": 18253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352062,17 +260792,12 @@ }, { "id": 18254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352080,17 +260805,12 @@ }, { "id": 18255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352100,17 +260820,12 @@ }, { "id": 18256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352121,17 +260836,12 @@ }, { "id": 18257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352142,17 +260852,12 @@ }, { "id": 18258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352162,17 +260867,12 @@ }, { "id": 18259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352183,17 +260883,12 @@ }, { "id": 18260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352204,17 +260899,12 @@ }, { "id": 18261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -352222,17 +260912,12 @@ }, { "id": 18262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352241,17 +260926,12 @@ }, { "id": 18263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352260,17 +260940,12 @@ }, { "id": 18264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -352278,17 +260953,12 @@ }, { "id": 18265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352297,17 +260967,12 @@ }, { "id": 18266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352316,17 +260981,12 @@ }, { "id": 18267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352336,17 +260996,12 @@ }, { "id": 18268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352357,17 +261012,12 @@ }, { "id": 18269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352378,17 +261028,12 @@ }, { "id": 18270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352398,17 +261043,12 @@ }, { "id": 18271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352419,17 +261059,12 @@ }, { "id": 18272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352440,17 +261075,12 @@ }, { "id": 18273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -352458,17 +261088,12 @@ }, { "id": 18274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352477,17 +261102,12 @@ }, { "id": 18275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352496,17 +261116,12 @@ }, { "id": 18276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -352514,17 +261129,12 @@ }, { "id": 18277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352533,17 +261143,12 @@ }, { "id": 18278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352552,17 +261157,12 @@ }, { "id": 18279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352571,17 +261171,12 @@ }, { "id": 18280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352591,17 +261186,12 @@ }, { "id": 18281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352611,17 +261201,12 @@ }, { "id": 18282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352630,17 +261215,12 @@ }, { "id": 18283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352650,17 +261230,12 @@ }, { "id": 18284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352670,17 +261245,12 @@ }, { "id": 18285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -352688,17 +261258,12 @@ }, { "id": 18286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352706,17 +261271,12 @@ }, { "id": 18287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352724,17 +261284,12 @@ }, { "id": 18288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -352742,17 +261297,12 @@ }, { "id": 18289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352760,17 +261310,12 @@ }, { "id": 18290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -352778,17 +261323,12 @@ }, { "id": 18291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352798,17 +261338,12 @@ }, { "id": 18292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352819,17 +261354,12 @@ }, { "id": 18293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352840,17 +261370,12 @@ }, { "id": 18294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -352860,17 +261385,12 @@ }, { "id": 18295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352881,17 +261401,12 @@ }, { "id": 18296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -352902,17 +261417,12 @@ }, { "id": 18297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -352920,17 +261430,12 @@ }, { "id": 18298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352939,17 +261444,12 @@ }, { "id": 18299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352958,17 +261458,12 @@ }, { "id": 18300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -352976,17 +261471,12 @@ }, { "id": 18301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -352995,17 +261485,12 @@ }, { "id": 18302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -353014,17 +261499,12 @@ }, { "id": 18303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -353034,17 +261514,12 @@ }, { "id": 18304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353055,17 +261530,12 @@ }, { "id": 18305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353076,17 +261546,12 @@ }, { "id": 18306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -353096,17 +261561,12 @@ }, { "id": 18307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353117,17 +261577,12 @@ }, { "id": 18308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353138,17 +261593,12 @@ }, { "id": 18309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -353156,17 +261606,12 @@ }, { "id": 18310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -353175,17 +261620,12 @@ }, { "id": 18311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -353194,17 +261634,12 @@ }, { "id": 18312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -353212,17 +261647,12 @@ }, { "id": 18313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -353231,17 +261661,12 @@ }, { "id": 18314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -353250,17 +261675,12 @@ }, { "id": 18315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -353268,17 +261688,12 @@ }, { "id": 18316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353287,17 +261702,12 @@ }, { "id": 18317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353306,17 +261716,12 @@ }, { "id": 18318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -353324,17 +261729,12 @@ }, { "id": 18319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353343,17 +261743,12 @@ }, { "id": 18320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353362,119 +261757,84 @@ }, { "id": 18321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -353483,17 +261843,12 @@ }, { "id": 18328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353503,17 +261858,12 @@ }, { "id": 18329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353523,17 +261873,12 @@ }, { "id": 18330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -353542,17 +261887,12 @@ }, { "id": 18331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353562,17 +261902,12 @@ }, { "id": 18332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353582,17 +261917,12 @@ }, { "id": 18333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -353600,17 +261930,12 @@ }, { "id": 18334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353618,17 +261943,12 @@ }, { "id": 18335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353636,17 +261956,12 @@ }, { "id": 18336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -353654,17 +261969,12 @@ }, { "id": 18337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353672,17 +261982,12 @@ }, { "id": 18338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353690,17 +261995,12 @@ }, { "id": 18339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -353709,17 +262009,12 @@ }, { "id": 18340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353729,17 +262024,12 @@ }, { "id": 18341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353749,17 +262039,12 @@ }, { "id": 18342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -353768,17 +262053,12 @@ }, { "id": 18343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353788,17 +262068,12 @@ }, { "id": 18344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353808,17 +262083,12 @@ }, { "id": 18345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -353826,17 +262096,12 @@ }, { "id": 18346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353844,17 +262109,12 @@ }, { "id": 18347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353862,17 +262122,12 @@ }, { "id": 18348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -353880,17 +262135,12 @@ }, { "id": 18349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353898,17 +262148,12 @@ }, { "id": 18350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -353916,17 +262161,12 @@ }, { "id": 18351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -353935,17 +262175,12 @@ }, { "id": 18352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353955,17 +262190,12 @@ }, { "id": 18353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -353975,17 +262205,12 @@ }, { "id": 18354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -353994,17 +262219,12 @@ }, { "id": 18355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354014,17 +262234,12 @@ }, { "id": 18356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354034,17 +262249,12 @@ }, { "id": 18357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -354052,17 +262262,12 @@ }, { "id": 18358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354070,17 +262275,12 @@ }, { "id": 18359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354088,17 +262288,12 @@ }, { "id": 18360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -354106,17 +262301,12 @@ }, { "id": 18361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354124,17 +262314,12 @@ }, { "id": 18362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354142,17 +262327,12 @@ }, { "id": 18363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354162,17 +262342,12 @@ }, { "id": 18364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354183,17 +262358,12 @@ }, { "id": 18365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354204,17 +262374,12 @@ }, { "id": 18366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354224,17 +262389,12 @@ }, { "id": 18367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354245,17 +262405,12 @@ }, { "id": 18368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354266,17 +262421,12 @@ }, { "id": 18369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -354284,17 +262434,12 @@ }, { "id": 18370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354303,17 +262448,12 @@ }, { "id": 18371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354322,17 +262462,12 @@ }, { "id": 18372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -354340,17 +262475,12 @@ }, { "id": 18373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354359,17 +262489,12 @@ }, { "id": 18374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354378,17 +262503,12 @@ }, { "id": 18375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354398,17 +262518,12 @@ }, { "id": 18376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354419,17 +262534,12 @@ }, { "id": 18377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354440,17 +262550,12 @@ }, { "id": 18378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354460,17 +262565,12 @@ }, { "id": 18379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354481,17 +262581,12 @@ }, { "id": 18380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354502,17 +262597,12 @@ }, { "id": 18381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -354520,17 +262610,12 @@ }, { "id": 18382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354539,17 +262624,12 @@ }, { "id": 18383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354558,17 +262638,12 @@ }, { "id": 18384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -354576,17 +262651,12 @@ }, { "id": 18385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354595,17 +262665,12 @@ }, { "id": 18386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -354614,17 +262679,12 @@ }, { "id": 18387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354633,17 +262693,12 @@ }, { "id": 18388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354653,17 +262708,12 @@ }, { "id": 18389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354673,17 +262723,12 @@ }, { "id": 18390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354692,17 +262737,12 @@ }, { "id": 18391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354712,17 +262752,12 @@ }, { "id": 18392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354732,17 +262767,12 @@ }, { "id": 18393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -354750,17 +262780,12 @@ }, { "id": 18394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354768,17 +262793,12 @@ }, { "id": 18395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354786,17 +262806,12 @@ }, { "id": 18396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -354804,17 +262819,12 @@ }, { "id": 18397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354822,17 +262832,12 @@ }, { "id": 18398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -354840,17 +262845,12 @@ }, { "id": 18399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354860,17 +262860,12 @@ }, { "id": 18400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354881,17 +262876,12 @@ }, { "id": 18401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354902,17 +262892,12 @@ }, { "id": 18402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -354922,17 +262907,12 @@ }, { "id": 18403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354943,17 +262923,12 @@ }, { "id": 18404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -354964,17 +262939,12 @@ }, { "id": 18405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -354982,17 +262952,12 @@ }, { "id": 18406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355001,17 +262966,12 @@ }, { "id": 18407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355020,17 +262980,12 @@ }, { "id": 18408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -355038,17 +262993,12 @@ }, { "id": 18409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355057,17 +263007,12 @@ }, { "id": 18410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355076,17 +263021,12 @@ }, { "id": 18411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -355096,17 +263036,12 @@ }, { "id": 18412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -355117,17 +263052,12 @@ }, { "id": 18413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -355138,17 +263068,12 @@ }, { "id": 18414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -355158,17 +263083,12 @@ }, { "id": 18415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -355179,17 +263099,12 @@ }, { "id": 18416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -355200,17 +263115,12 @@ }, { "id": 18417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -355218,17 +263128,12 @@ }, { "id": 18418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355237,17 +263142,12 @@ }, { "id": 18419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355256,17 +263156,12 @@ }, { "id": 18420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -355274,17 +263169,12 @@ }, { "id": 18421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355293,17 +263183,12 @@ }, { "id": 18422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -355344,45 +263229,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 18426, "states": [ { "id": 18423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 18424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355391,17 +263266,12 @@ }, { "id": 18425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355410,34 +263280,24 @@ }, { "id": 18426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 18427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355446,17 +263306,12 @@ }, { "id": 18428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355465,115 +263320,80 @@ }, { "id": 18429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 18430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 18433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -355581,17 +263401,12 @@ }, { "id": 18436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355601,17 +263416,12 @@ }, { "id": 18437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355621,17 +263431,12 @@ }, { "id": 18438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -355639,17 +263444,12 @@ }, { "id": 18439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355659,17 +263459,12 @@ }, { "id": 18440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355679,34 +263474,24 @@ }, { "id": 18441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355714,17 +263499,12 @@ }, { "id": 18443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355732,34 +263512,24 @@ }, { "id": 18444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355767,17 +263537,12 @@ }, { "id": 18446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355785,17 +263550,12 @@ }, { "id": 18447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -355803,17 +263563,12 @@ }, { "id": 18448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355823,17 +263578,12 @@ }, { "id": 18449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355843,17 +263593,12 @@ }, { "id": 18450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -355861,17 +263606,12 @@ }, { "id": 18451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355881,17 +263621,12 @@ }, { "id": 18452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -355901,34 +263636,24 @@ }, { "id": 18453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355936,17 +263661,12 @@ }, { "id": 18455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355954,34 +263674,24 @@ }, { "id": 18456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -355989,17 +263699,12 @@ }, { "id": 18458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -356007,17 +263712,12 @@ }, { "id": 18459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -356025,17 +263725,12 @@ }, { "id": 18460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356045,17 +263740,12 @@ }, { "id": 18461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356065,17 +263755,12 @@ }, { "id": 18462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -356083,17 +263768,12 @@ }, { "id": 18463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356103,17 +263783,12 @@ }, { "id": 18464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356123,34 +263798,24 @@ }, { "id": 18465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356158,17 +263823,12 @@ }, { "id": 18467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356176,34 +263836,24 @@ }, { "id": 18468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356211,17 +263861,12 @@ }, { "id": 18470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356229,17 +263874,12 @@ }, { "id": 18471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -356248,17 +263888,12 @@ }, { "id": 18472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356269,17 +263904,12 @@ }, { "id": 18473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356290,17 +263920,12 @@ }, { "id": 18474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -356309,17 +263934,12 @@ }, { "id": 18475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356330,17 +263950,12 @@ }, { "id": 18476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356351,34 +263966,24 @@ }, { "id": 18477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356387,17 +263992,12 @@ }, { "id": 18479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356406,34 +264006,24 @@ }, { "id": 18480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356442,17 +264032,12 @@ }, { "id": 18482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356461,17 +264046,12 @@ }, { "id": 18483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -356480,17 +264060,12 @@ }, { "id": 18484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356501,17 +264076,12 @@ }, { "id": 18485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356522,17 +264092,12 @@ }, { "id": 18486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -356541,17 +264106,12 @@ }, { "id": 18487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356562,17 +264122,12 @@ }, { "id": 18488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356583,34 +264138,24 @@ }, { "id": 18489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356619,17 +264164,12 @@ }, { "id": 18491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356638,34 +264178,24 @@ }, { "id": 18492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356674,17 +264204,12 @@ }, { "id": 18494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -356693,17 +264218,12 @@ }, { "id": 18495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -356711,17 +264231,12 @@ }, { "id": 18496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356731,17 +264246,12 @@ }, { "id": 18497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356751,17 +264261,12 @@ }, { "id": 18498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -356769,17 +264274,12 @@ }, { "id": 18499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356789,17 +264289,12 @@ }, { "id": 18500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356809,34 +264304,24 @@ }, { "id": 18501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356844,17 +264329,12 @@ }, { "id": 18503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356862,34 +264342,24 @@ }, { "id": 18504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356897,17 +264367,12 @@ }, { "id": 18506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -356915,17 +264380,12 @@ }, { "id": 18507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -356934,17 +264394,12 @@ }, { "id": 18508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356955,17 +264410,12 @@ }, { "id": 18509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -356976,17 +264426,12 @@ }, { "id": 18510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -356995,17 +264440,12 @@ }, { "id": 18511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -357016,17 +264456,12 @@ }, { "id": 18512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -357037,34 +264472,24 @@ }, { "id": 18513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357073,17 +264498,12 @@ }, { "id": 18515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357092,34 +264512,24 @@ }, { "id": 18516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357128,17 +264538,12 @@ }, { "id": 18518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357147,17 +264552,12 @@ }, { "id": 18519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -357166,17 +264566,12 @@ }, { "id": 18520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -357187,17 +264582,12 @@ }, { "id": 18521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -357208,17 +264598,12 @@ }, { "id": 18522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -357227,17 +264612,12 @@ }, { "id": 18523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -357248,17 +264628,12 @@ }, { "id": 18524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -357269,34 +264644,24 @@ }, { "id": 18525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357305,17 +264670,12 @@ }, { "id": 18527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357324,34 +264684,24 @@ }, { "id": 18528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357360,17 +264710,12 @@ }, { "id": 18530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -357379,17 +264724,12 @@ }, { "id": 18531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -357397,17 +264737,12 @@ }, { "id": 18532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357416,17 +264751,12 @@ }, { "id": 18533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357435,17 +264765,12 @@ }, { "id": 18534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -357453,17 +264778,12 @@ }, { "id": 18535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357472,17 +264792,12 @@ }, { "id": 18536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357491,119 +264806,84 @@ }, { "id": 18537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -357612,17 +264892,12 @@ }, { "id": 18544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357632,17 +264907,12 @@ }, { "id": 18545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357652,17 +264922,12 @@ }, { "id": 18546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -357671,17 +264936,12 @@ }, { "id": 18547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357691,17 +264951,12 @@ }, { "id": 18548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357711,17 +264966,12 @@ }, { "id": 18549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -357729,17 +264979,12 @@ }, { "id": 18550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -357747,17 +264992,12 @@ }, { "id": 18551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -357765,17 +265005,12 @@ }, { "id": 18552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -357783,17 +265018,12 @@ }, { "id": 18553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -357801,17 +265031,12 @@ }, { "id": 18554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -357819,17 +265044,12 @@ }, { "id": 18555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -357838,17 +265058,12 @@ }, { "id": 18556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357858,17 +265073,12 @@ }, { "id": 18557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357878,17 +265088,12 @@ }, { "id": 18558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -357897,17 +265102,12 @@ }, { "id": 18559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357917,17 +265117,12 @@ }, { "id": 18560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -357937,17 +265132,12 @@ }, { "id": 18561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -357955,17 +265145,12 @@ }, { "id": 18562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -357973,17 +265158,12 @@ }, { "id": 18563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -357991,17 +265171,12 @@ }, { "id": 18564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -358009,17 +265184,12 @@ }, { "id": 18565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -358027,17 +265197,12 @@ }, { "id": 18566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -358045,17 +265210,12 @@ }, { "id": 18567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358064,17 +265224,12 @@ }, { "id": 18568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358084,17 +265239,12 @@ }, { "id": 18569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358104,17 +265254,12 @@ }, { "id": 18570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358123,17 +265268,12 @@ }, { "id": 18571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358143,17 +265283,12 @@ }, { "id": 18572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358163,17 +265298,12 @@ }, { "id": 18573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -358181,17 +265311,12 @@ }, { "id": 18574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358199,17 +265324,12 @@ }, { "id": 18575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358217,17 +265337,12 @@ }, { "id": 18576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -358235,17 +265350,12 @@ }, { "id": 18577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358253,17 +265363,12 @@ }, { "id": 18578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358271,17 +265376,12 @@ }, { "id": 18579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358291,17 +265391,12 @@ }, { "id": 18580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358312,17 +265407,12 @@ }, { "id": 18581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358333,17 +265423,12 @@ }, { "id": 18582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358353,17 +265438,12 @@ }, { "id": 18583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358374,17 +265454,12 @@ }, { "id": 18584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358395,17 +265470,12 @@ }, { "id": 18585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -358413,17 +265483,12 @@ }, { "id": 18586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358432,17 +265497,12 @@ }, { "id": 18587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358451,17 +265511,12 @@ }, { "id": 18588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -358469,17 +265524,12 @@ }, { "id": 18589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358488,17 +265538,12 @@ }, { "id": 18590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358507,17 +265552,12 @@ }, { "id": 18591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358527,17 +265567,12 @@ }, { "id": 18592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358548,17 +265583,12 @@ }, { "id": 18593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358569,17 +265599,12 @@ }, { "id": 18594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358589,17 +265614,12 @@ }, { "id": 18595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358610,17 +265630,12 @@ }, { "id": 18596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358631,17 +265646,12 @@ }, { "id": 18597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -358649,17 +265659,12 @@ }, { "id": 18598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358668,17 +265673,12 @@ }, { "id": 18599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358687,17 +265687,12 @@ }, { "id": 18600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -358705,17 +265700,12 @@ }, { "id": 18601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358724,17 +265714,12 @@ }, { "id": 18602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -358743,17 +265728,12 @@ }, { "id": 18603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358762,17 +265742,12 @@ }, { "id": 18604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358782,17 +265757,12 @@ }, { "id": 18605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358802,17 +265772,12 @@ }, { "id": 18606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358821,17 +265786,12 @@ }, { "id": 18607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358841,17 +265801,12 @@ }, { "id": 18608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -358861,17 +265816,12 @@ }, { "id": 18609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -358879,17 +265829,12 @@ }, { "id": 18610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358897,17 +265842,12 @@ }, { "id": 18611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358915,17 +265855,12 @@ }, { "id": 18612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -358933,17 +265868,12 @@ }, { "id": 18613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358951,17 +265881,12 @@ }, { "id": 18614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -358969,17 +265894,12 @@ }, { "id": 18615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -358989,17 +265909,12 @@ }, { "id": 18616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359010,17 +265925,12 @@ }, { "id": 18617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359031,17 +265941,12 @@ }, { "id": 18618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -359051,17 +265956,12 @@ }, { "id": 18619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359072,17 +265972,12 @@ }, { "id": 18620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359093,17 +265988,12 @@ }, { "id": 18621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -359111,17 +266001,12 @@ }, { "id": 18622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359130,17 +266015,12 @@ }, { "id": 18623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359149,17 +266029,12 @@ }, { "id": 18624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -359167,17 +266042,12 @@ }, { "id": 18625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359186,17 +266056,12 @@ }, { "id": 18626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359205,17 +266070,12 @@ }, { "id": 18627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -359225,17 +266085,12 @@ }, { "id": 18628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359246,17 +266101,12 @@ }, { "id": 18629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359267,17 +266117,12 @@ }, { "id": 18630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -359287,17 +266132,12 @@ }, { "id": 18631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359308,17 +266148,12 @@ }, { "id": 18632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359329,17 +266164,12 @@ }, { "id": 18633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -359347,17 +266177,12 @@ }, { "id": 18634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359366,17 +266191,12 @@ }, { "id": 18635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359385,17 +266205,12 @@ }, { "id": 18636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -359403,17 +266218,12 @@ }, { "id": 18637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359422,17 +266232,12 @@ }, { "id": 18638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -359441,17 +266246,12 @@ }, { "id": 18639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -359459,17 +266259,12 @@ }, { "id": 18640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359478,17 +266273,12 @@ }, { "id": 18641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359497,17 +266287,12 @@ }, { "id": 18642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -359515,17 +266300,12 @@ }, { "id": 18643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359534,17 +266314,12 @@ }, { "id": 18644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359553,119 +266328,84 @@ }, { "id": 18645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -359674,17 +266414,12 @@ }, { "id": 18652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359694,17 +266429,12 @@ }, { "id": 18653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359714,17 +266444,12 @@ }, { "id": 18654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -359733,17 +266458,12 @@ }, { "id": 18655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359753,17 +266473,12 @@ }, { "id": 18656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359773,17 +266488,12 @@ }, { "id": 18657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -359791,17 +266501,12 @@ }, { "id": 18658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -359809,17 +266514,12 @@ }, { "id": 18659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -359827,17 +266527,12 @@ }, { "id": 18660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -359845,17 +266540,12 @@ }, { "id": 18661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -359863,17 +266553,12 @@ }, { "id": 18662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -359881,17 +266566,12 @@ }, { "id": 18663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -359900,17 +266580,12 @@ }, { "id": 18664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359920,17 +266595,12 @@ }, { "id": 18665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359940,17 +266610,12 @@ }, { "id": 18666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -359959,17 +266624,12 @@ }, { "id": 18667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359979,17 +266639,12 @@ }, { "id": 18668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -359999,17 +266654,12 @@ }, { "id": 18669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -360017,17 +266667,12 @@ }, { "id": 18670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -360035,17 +266680,12 @@ }, { "id": 18671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -360053,17 +266693,12 @@ }, { "id": 18672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -360071,17 +266706,12 @@ }, { "id": 18673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -360089,17 +266719,12 @@ }, { "id": 18674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -360107,17 +266732,12 @@ }, { "id": 18675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360126,17 +266746,12 @@ }, { "id": 18676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360146,17 +266761,12 @@ }, { "id": 18677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360166,17 +266776,12 @@ }, { "id": 18678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360185,17 +266790,12 @@ }, { "id": 18679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360205,17 +266805,12 @@ }, { "id": 18680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360225,17 +266820,12 @@ }, { "id": 18681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -360243,17 +266833,12 @@ }, { "id": 18682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -360261,17 +266846,12 @@ }, { "id": 18683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -360279,17 +266859,12 @@ }, { "id": 18684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -360297,17 +266872,12 @@ }, { "id": 18685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -360315,17 +266885,12 @@ }, { "id": 18686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -360333,17 +266898,12 @@ }, { "id": 18687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360353,17 +266913,12 @@ }, { "id": 18688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360374,17 +266929,12 @@ }, { "id": 18689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360395,17 +266945,12 @@ }, { "id": 18690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360415,17 +266960,12 @@ }, { "id": 18691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360436,17 +266976,12 @@ }, { "id": 18692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360457,17 +266992,12 @@ }, { "id": 18693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -360475,17 +267005,12 @@ }, { "id": 18694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360494,17 +267019,12 @@ }, { "id": 18695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360513,17 +267033,12 @@ }, { "id": 18696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -360531,17 +267046,12 @@ }, { "id": 18697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360550,17 +267060,12 @@ }, { "id": 18698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360569,17 +267074,12 @@ }, { "id": 18699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360589,17 +267089,12 @@ }, { "id": 18700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360610,17 +267105,12 @@ }, { "id": 18701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360631,17 +267121,12 @@ }, { "id": 18702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360651,17 +267136,12 @@ }, { "id": 18703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360672,17 +267152,12 @@ }, { "id": 18704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360693,17 +267168,12 @@ }, { "id": 18705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -360711,17 +267181,12 @@ }, { "id": 18706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360730,17 +267195,12 @@ }, { "id": 18707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360749,17 +267209,12 @@ }, { "id": 18708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -360767,17 +267222,12 @@ }, { "id": 18709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360786,17 +267236,12 @@ }, { "id": 18710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -360805,17 +267250,12 @@ }, { "id": 18711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360824,17 +267264,12 @@ }, { "id": 18712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360844,17 +267279,12 @@ }, { "id": 18713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360864,17 +267294,12 @@ }, { "id": 18714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -360883,17 +267308,12 @@ }, { "id": 18715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360903,17 +267323,12 @@ }, { "id": 18716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -360923,17 +267338,12 @@ }, { "id": 18717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -360941,17 +267351,12 @@ }, { "id": 18718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -360959,17 +267364,12 @@ }, { "id": 18719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -360977,17 +267377,12 @@ }, { "id": 18720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -360995,17 +267390,12 @@ }, { "id": 18721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -361013,17 +267403,12 @@ }, { "id": 18722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -361031,17 +267416,12 @@ }, { "id": 18723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -361051,17 +267431,12 @@ }, { "id": 18724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361072,17 +267447,12 @@ }, { "id": 18725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361093,17 +267463,12 @@ }, { "id": 18726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -361113,17 +267478,12 @@ }, { "id": 18727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361134,17 +267494,12 @@ }, { "id": 18728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361155,17 +267510,12 @@ }, { "id": 18729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -361173,17 +267523,12 @@ }, { "id": 18730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361192,17 +267537,12 @@ }, { "id": 18731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361211,17 +267551,12 @@ }, { "id": 18732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -361229,17 +267564,12 @@ }, { "id": 18733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361248,17 +267578,12 @@ }, { "id": 18734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361267,17 +267592,12 @@ }, { "id": 18735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -361287,17 +267607,12 @@ }, { "id": 18736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361308,17 +267623,12 @@ }, { "id": 18737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361329,17 +267639,12 @@ }, { "id": 18738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -361349,17 +267654,12 @@ }, { "id": 18739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361370,17 +267670,12 @@ }, { "id": 18740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -361391,17 +267686,12 @@ }, { "id": 18741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -361409,17 +267699,12 @@ }, { "id": 18742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361428,17 +267713,12 @@ }, { "id": 18743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361447,17 +267727,12 @@ }, { "id": 18744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -361465,17 +267740,12 @@ }, { "id": 18745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361484,17 +267754,12 @@ }, { "id": 18746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -361535,45 +267800,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 18750, "states": [ { "id": 18747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 18748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361582,17 +267837,12 @@ }, { "id": 18749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361601,34 +267851,24 @@ }, { "id": 18750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 18751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361637,17 +267877,12 @@ }, { "id": 18752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361656,115 +267891,80 @@ }, { "id": 18753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 18754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 18757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 18759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -361772,17 +267972,12 @@ }, { "id": 18760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361792,17 +267987,12 @@ }, { "id": 18761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361812,17 +268002,12 @@ }, { "id": 18762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -361830,17 +268015,12 @@ }, { "id": 18763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361850,17 +268030,12 @@ }, { "id": 18764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -361870,34 +268045,24 @@ }, { "id": 18765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -361905,17 +268070,12 @@ }, { "id": 18767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -361923,34 +268083,24 @@ }, { "id": 18768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -361958,17 +268108,12 @@ }, { "id": 18770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -361976,17 +268121,12 @@ }, { "id": 18771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -361994,17 +268134,12 @@ }, { "id": 18772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362014,17 +268149,12 @@ }, { "id": 18773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362034,17 +268164,12 @@ }, { "id": 18774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -362052,17 +268177,12 @@ }, { "id": 18775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362072,17 +268192,12 @@ }, { "id": 18776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362092,34 +268207,24 @@ }, { "id": 18777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -362127,17 +268232,12 @@ }, { "id": 18779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -362145,34 +268245,24 @@ }, { "id": 18780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 18781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -362180,17 +268270,12 @@ }, { "id": 18782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -362198,17 +268283,12 @@ }, { "id": 18783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -362216,17 +268296,12 @@ }, { "id": 18784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362236,17 +268311,12 @@ }, { "id": 18785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362256,17 +268326,12 @@ }, { "id": 18786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -362274,17 +268339,12 @@ }, { "id": 18787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362294,17 +268354,12 @@ }, { "id": 18788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362314,34 +268369,24 @@ }, { "id": 18789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -362349,17 +268394,12 @@ }, { "id": 18791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -362367,34 +268407,24 @@ }, { "id": 18792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -362402,17 +268432,12 @@ }, { "id": 18794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -362420,17 +268445,12 @@ }, { "id": 18795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -362439,17 +268459,12 @@ }, { "id": 18796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362460,17 +268475,12 @@ }, { "id": 18797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362481,17 +268491,12 @@ }, { "id": 18798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -362500,17 +268505,12 @@ }, { "id": 18799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362521,17 +268521,12 @@ }, { "id": 18800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362542,34 +268537,24 @@ }, { "id": 18801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362578,17 +268563,12 @@ }, { "id": 18803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362597,34 +268577,24 @@ }, { "id": 18804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362633,17 +268603,12 @@ }, { "id": 18806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362652,17 +268617,12 @@ }, { "id": 18807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -362671,17 +268631,12 @@ }, { "id": 18808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362692,17 +268647,12 @@ }, { "id": 18809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362713,17 +268663,12 @@ }, { "id": 18810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -362732,17 +268677,12 @@ }, { "id": 18811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362753,17 +268693,12 @@ }, { "id": 18812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362774,34 +268709,24 @@ }, { "id": 18813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362810,17 +268735,12 @@ }, { "id": 18815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362829,34 +268749,24 @@ }, { "id": 18816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362865,17 +268775,12 @@ }, { "id": 18818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -362884,17 +268789,12 @@ }, { "id": 18819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -362902,17 +268802,12 @@ }, { "id": 18820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362922,17 +268817,12 @@ }, { "id": 18821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362942,17 +268832,12 @@ }, { "id": 18822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -362960,17 +268845,12 @@ }, { "id": 18823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -362980,17 +268860,12 @@ }, { "id": 18824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363000,34 +268875,24 @@ }, { "id": 18825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -363035,17 +268900,12 @@ }, { "id": 18827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -363053,34 +268913,24 @@ }, { "id": 18828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 18829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -363088,17 +268938,12 @@ }, { "id": 18830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -363106,17 +268951,12 @@ }, { "id": 18831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -363125,17 +268965,12 @@ }, { "id": 18832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363146,17 +268981,12 @@ }, { "id": 18833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363167,17 +268997,12 @@ }, { "id": 18834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -363186,17 +269011,12 @@ }, { "id": 18835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363207,17 +269027,12 @@ }, { "id": 18836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363228,34 +269043,24 @@ }, { "id": 18837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363264,17 +269069,12 @@ }, { "id": 18839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363283,34 +269083,24 @@ }, { "id": 18840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363319,17 +269109,12 @@ }, { "id": 18842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363338,17 +269123,12 @@ }, { "id": 18843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -363357,17 +269137,12 @@ }, { "id": 18844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363378,17 +269153,12 @@ }, { "id": 18845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363399,17 +269169,12 @@ }, { "id": 18846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -363418,17 +269183,12 @@ }, { "id": 18847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363439,17 +269199,12 @@ }, { "id": 18848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -363460,34 +269215,24 @@ }, { "id": 18849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363496,17 +269241,12 @@ }, { "id": 18851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363515,34 +269255,24 @@ }, { "id": 18852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 18853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363551,17 +269281,12 @@ }, { "id": 18854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -363570,17 +269295,12 @@ }, { "id": 18855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -363588,17 +269308,12 @@ }, { "id": 18856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363607,17 +269322,12 @@ }, { "id": 18857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363626,17 +269336,12 @@ }, { "id": 18858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -363644,17 +269349,12 @@ }, { "id": 18859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363663,17 +269363,12 @@ }, { "id": 18860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363682,119 +269377,84 @@ }, { "id": 18861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -363803,17 +269463,12 @@ }, { "id": 18868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363823,17 +269478,12 @@ }, { "id": 18869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363843,17 +269493,12 @@ }, { "id": 18870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -363862,17 +269507,12 @@ }, { "id": 18871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363882,17 +269522,12 @@ }, { "id": 18872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -363902,17 +269537,12 @@ }, { "id": 18873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -363920,17 +269550,12 @@ }, { "id": 18874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -363938,17 +269563,12 @@ }, { "id": 18875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -363956,17 +269576,12 @@ }, { "id": 18876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -363974,17 +269589,12 @@ }, { "id": 18877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -363992,17 +269602,12 @@ }, { "id": 18878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -364010,17 +269615,12 @@ }, { "id": 18879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -364029,17 +269629,12 @@ }, { "id": 18880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364049,17 +269644,12 @@ }, { "id": 18881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364069,17 +269659,12 @@ }, { "id": 18882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -364088,17 +269673,12 @@ }, { "id": 18883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364108,17 +269688,12 @@ }, { "id": 18884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364128,17 +269703,12 @@ }, { "id": 18885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -364146,17 +269716,12 @@ }, { "id": 18886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -364164,17 +269729,12 @@ }, { "id": 18887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -364182,17 +269742,12 @@ }, { "id": 18888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -364200,17 +269755,12 @@ }, { "id": 18889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -364218,17 +269768,12 @@ }, { "id": 18890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -364236,17 +269781,12 @@ }, { "id": 18891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364255,17 +269795,12 @@ }, { "id": 18892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364275,17 +269810,12 @@ }, { "id": 18893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364295,17 +269825,12 @@ }, { "id": 18894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364314,17 +269839,12 @@ }, { "id": 18895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364334,17 +269854,12 @@ }, { "id": 18896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364354,17 +269869,12 @@ }, { "id": 18897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -364372,17 +269882,12 @@ }, { "id": 18898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -364390,17 +269895,12 @@ }, { "id": 18899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -364408,17 +269908,12 @@ }, { "id": 18900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -364426,17 +269921,12 @@ }, { "id": 18901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -364444,17 +269934,12 @@ }, { "id": 18902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -364462,17 +269947,12 @@ }, { "id": 18903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364482,17 +269962,12 @@ }, { "id": 18904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364503,17 +269978,12 @@ }, { "id": 18905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364524,17 +269994,12 @@ }, { "id": 18906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364544,17 +270009,12 @@ }, { "id": 18907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364565,17 +270025,12 @@ }, { "id": 18908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364586,17 +270041,12 @@ }, { "id": 18909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -364604,17 +270054,12 @@ }, { "id": 18910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364623,17 +270068,12 @@ }, { "id": 18911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364642,17 +270082,12 @@ }, { "id": 18912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -364660,17 +270095,12 @@ }, { "id": 18913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364679,17 +270109,12 @@ }, { "id": 18914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364698,17 +270123,12 @@ }, { "id": 18915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364718,17 +270138,12 @@ }, { "id": 18916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364739,17 +270154,12 @@ }, { "id": 18917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364760,17 +270170,12 @@ }, { "id": 18918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364780,17 +270185,12 @@ }, { "id": 18919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364801,17 +270201,12 @@ }, { "id": 18920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364822,17 +270217,12 @@ }, { "id": 18921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -364840,17 +270230,12 @@ }, { "id": 18922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364859,17 +270244,12 @@ }, { "id": 18923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364878,17 +270258,12 @@ }, { "id": 18924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -364896,17 +270271,12 @@ }, { "id": 18925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364915,17 +270285,12 @@ }, { "id": 18926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -364934,17 +270299,12 @@ }, { "id": 18927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -364953,17 +270313,12 @@ }, { "id": 18928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364973,17 +270328,12 @@ }, { "id": 18929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -364993,17 +270343,12 @@ }, { "id": 18930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -365012,17 +270357,12 @@ }, { "id": 18931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365032,17 +270372,12 @@ }, { "id": 18932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365052,17 +270387,12 @@ }, { "id": 18933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -365070,17 +270400,12 @@ }, { "id": 18934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -365088,17 +270413,12 @@ }, { "id": 18935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -365106,17 +270426,12 @@ }, { "id": 18936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -365124,17 +270439,12 @@ }, { "id": 18937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -365142,17 +270452,12 @@ }, { "id": 18938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -365160,17 +270465,12 @@ }, { "id": 18939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -365180,17 +270480,12 @@ }, { "id": 18940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365201,17 +270496,12 @@ }, { "id": 18941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365222,17 +270512,12 @@ }, { "id": 18942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -365242,17 +270527,12 @@ }, { "id": 18943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365263,17 +270543,12 @@ }, { "id": 18944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365284,17 +270559,12 @@ }, { "id": 18945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -365302,17 +270572,12 @@ }, { "id": 18946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365321,17 +270586,12 @@ }, { "id": 18947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365340,17 +270600,12 @@ }, { "id": 18948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -365358,17 +270613,12 @@ }, { "id": 18949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365377,17 +270627,12 @@ }, { "id": 18950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365396,17 +270641,12 @@ }, { "id": 18951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -365416,17 +270656,12 @@ }, { "id": 18952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365437,17 +270672,12 @@ }, { "id": 18953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365458,17 +270688,12 @@ }, { "id": 18954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -365478,17 +270703,12 @@ }, { "id": 18955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365499,17 +270719,12 @@ }, { "id": 18956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365520,17 +270735,12 @@ }, { "id": 18957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -365538,17 +270748,12 @@ }, { "id": 18958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365557,17 +270762,12 @@ }, { "id": 18959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365576,17 +270776,12 @@ }, { "id": 18960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -365594,17 +270789,12 @@ }, { "id": 18961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365613,17 +270803,12 @@ }, { "id": 18962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -365632,17 +270817,12 @@ }, { "id": 18963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -365650,17 +270830,12 @@ }, { "id": 18964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365669,17 +270844,12 @@ }, { "id": 18965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365688,17 +270858,12 @@ }, { "id": 18966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -365706,17 +270871,12 @@ }, { "id": 18967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365725,17 +270885,12 @@ }, { "id": 18968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365744,119 +270899,84 @@ }, { "id": 18969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 18973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 18975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -365865,17 +270985,12 @@ }, { "id": 18976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365885,17 +271000,12 @@ }, { "id": 18977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365905,17 +271015,12 @@ }, { "id": 18978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -365924,17 +271029,12 @@ }, { "id": 18979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365944,17 +271044,12 @@ }, { "id": 18980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -365964,17 +271059,12 @@ }, { "id": 18981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -365982,17 +271072,12 @@ }, { "id": 18982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366000,17 +271085,12 @@ }, { "id": 18983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366018,17 +271098,12 @@ }, { "id": 18984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -366036,17 +271111,12 @@ }, { "id": 18985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366054,17 +271124,12 @@ }, { "id": 18986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366072,17 +271137,12 @@ }, { "id": 18987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -366091,17 +271151,12 @@ }, { "id": 18988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366111,17 +271166,12 @@ }, { "id": 18989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366131,17 +271181,12 @@ }, { "id": 18990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -366150,17 +271195,12 @@ }, { "id": 18991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366170,17 +271210,12 @@ }, { "id": 18992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366190,17 +271225,12 @@ }, { "id": 18993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -366208,17 +271238,12 @@ }, { "id": 18994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366226,17 +271251,12 @@ }, { "id": 18995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366244,17 +271264,12 @@ }, { "id": 18996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -366262,17 +271277,12 @@ }, { "id": 18997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366280,17 +271290,12 @@ }, { "id": 18998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -366298,17 +271303,12 @@ }, { "id": 18999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -366317,17 +271317,12 @@ }, { "id": 19000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366337,17 +271332,12 @@ }, { "id": 19001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366357,17 +271347,12 @@ }, { "id": 19002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -366376,17 +271361,12 @@ }, { "id": 19003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366396,17 +271376,12 @@ }, { "id": 19004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366416,17 +271391,12 @@ }, { "id": 19005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -366434,17 +271404,12 @@ }, { "id": 19006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -366452,17 +271417,12 @@ }, { "id": 19007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -366470,17 +271430,12 @@ }, { "id": 19008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -366488,17 +271443,12 @@ }, { "id": 19009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -366506,17 +271456,12 @@ }, { "id": 19010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -366524,17 +271469,12 @@ }, { "id": 19011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -366544,17 +271484,12 @@ }, { "id": 19012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366565,17 +271500,12 @@ }, { "id": 19013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366586,17 +271516,12 @@ }, { "id": 19014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -366606,17 +271531,12 @@ }, { "id": 19015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366627,17 +271547,12 @@ }, { "id": 19016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366648,17 +271563,12 @@ }, { "id": 19017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -366666,17 +271576,12 @@ }, { "id": 19018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366685,17 +271590,12 @@ }, { "id": 19019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366704,17 +271604,12 @@ }, { "id": 19020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -366722,17 +271617,12 @@ }, { "id": 19021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366741,17 +271631,12 @@ }, { "id": 19022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366760,17 +271645,12 @@ }, { "id": 19023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -366780,17 +271660,12 @@ }, { "id": 19024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366801,17 +271676,12 @@ }, { "id": 19025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366822,17 +271692,12 @@ }, { "id": 19026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -366842,17 +271707,12 @@ }, { "id": 19027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366863,17 +271723,12 @@ }, { "id": 19028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -366884,17 +271739,12 @@ }, { "id": 19029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -366902,17 +271752,12 @@ }, { "id": 19030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366921,17 +271766,12 @@ }, { "id": 19031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366940,17 +271780,12 @@ }, { "id": 19032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -366958,17 +271793,12 @@ }, { "id": 19033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366977,17 +271807,12 @@ }, { "id": 19034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -366996,17 +271821,12 @@ }, { "id": 19035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -367015,17 +271835,12 @@ }, { "id": 19036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367035,17 +271850,12 @@ }, { "id": 19037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367055,17 +271865,12 @@ }, { "id": 19038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -367074,17 +271879,12 @@ }, { "id": 19039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367094,17 +271894,12 @@ }, { "id": 19040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367114,17 +271909,12 @@ }, { "id": 19041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -367132,17 +271922,12 @@ }, { "id": 19042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -367150,17 +271935,12 @@ }, { "id": 19043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -367168,17 +271948,12 @@ }, { "id": 19044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -367186,17 +271961,12 @@ }, { "id": 19045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -367204,17 +271974,12 @@ }, { "id": 19046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -367222,17 +271987,12 @@ }, { "id": 19047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -367242,17 +272002,12 @@ }, { "id": 19048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367263,17 +272018,12 @@ }, { "id": 19049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367284,17 +272034,12 @@ }, { "id": 19050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -367304,17 +272049,12 @@ }, { "id": 19051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367325,17 +272065,12 @@ }, { "id": 19052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367346,17 +272081,12 @@ }, { "id": 19053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -367364,17 +272094,12 @@ }, { "id": 19054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367383,17 +272108,12 @@ }, { "id": 19055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367402,17 +272122,12 @@ }, { "id": 19056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -367420,17 +272135,12 @@ }, { "id": 19057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367439,17 +272149,12 @@ }, { "id": 19058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367458,17 +272163,12 @@ }, { "id": 19059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -367478,17 +272178,12 @@ }, { "id": 19060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367499,17 +272194,12 @@ }, { "id": 19061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367520,17 +272210,12 @@ }, { "id": 19062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -367540,17 +272225,12 @@ }, { "id": 19063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367561,17 +272241,12 @@ }, { "id": 19064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -367582,17 +272257,12 @@ }, { "id": 19065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -367600,17 +272270,12 @@ }, { "id": 19066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367619,17 +272284,12 @@ }, { "id": 19067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367638,17 +272298,12 @@ }, { "id": 19068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -367656,17 +272311,12 @@ }, { "id": 19069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367675,17 +272325,12 @@ }, { "id": 19070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -367726,45 +272371,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 19074, "states": [ { "id": 19071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 19072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -367773,17 +272408,12 @@ }, { "id": 19073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -367792,34 +272422,24 @@ }, { "id": 19074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 19075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -367828,17 +272448,12 @@ }, { "id": 19076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -367847,115 +272462,80 @@ }, { "id": 19077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 19079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 19080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 19082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 19083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -367963,17 +272543,12 @@ }, { "id": 19084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -367983,17 +272558,12 @@ }, { "id": 19085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368003,17 +272573,12 @@ }, { "id": 19086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -368021,17 +272586,12 @@ }, { "id": 19087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368041,17 +272601,12 @@ }, { "id": 19088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368061,34 +272616,24 @@ }, { "id": 19089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 19090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368096,17 +272641,12 @@ }, { "id": 19091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368114,34 +272654,24 @@ }, { "id": 19092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 19093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368149,17 +272679,12 @@ }, { "id": 19094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368167,17 +272692,12 @@ }, { "id": 19095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -368185,17 +272705,12 @@ }, { "id": 19096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368205,17 +272720,12 @@ }, { "id": 19097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368225,17 +272735,12 @@ }, { "id": 19098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -368243,17 +272748,12 @@ }, { "id": 19099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368263,17 +272763,12 @@ }, { "id": 19100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368283,34 +272778,24 @@ }, { "id": 19101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 19102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368318,17 +272803,12 @@ }, { "id": 19103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368336,34 +272816,24 @@ }, { "id": 19104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 19105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368371,17 +272841,12 @@ }, { "id": 19106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -368389,17 +272854,12 @@ }, { "id": 19107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -368407,17 +272867,12 @@ }, { "id": 19108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368427,17 +272882,12 @@ }, { "id": 19109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368447,17 +272897,12 @@ }, { "id": 19110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -368465,17 +272910,12 @@ }, { "id": 19111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368485,17 +272925,12 @@ }, { "id": 19112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368505,34 +272940,24 @@ }, { "id": 19113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 19114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -368540,17 +272965,12 @@ }, { "id": 19115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -368558,34 +272978,24 @@ }, { "id": 19116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 19117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -368593,17 +273003,12 @@ }, { "id": 19118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -368611,17 +273016,12 @@ }, { "id": 19119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -368630,17 +273030,12 @@ }, { "id": 19120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368651,17 +273046,12 @@ }, { "id": 19121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368672,17 +273062,12 @@ }, { "id": 19122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -368691,17 +273076,12 @@ }, { "id": 19123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368712,17 +273092,12 @@ }, { "id": 19124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368733,34 +273108,24 @@ }, { "id": 19125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -368769,17 +273134,12 @@ }, { "id": 19127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -368788,34 +273148,24 @@ }, { "id": 19128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -368824,17 +273174,12 @@ }, { "id": 19130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -368843,17 +273188,12 @@ }, { "id": 19131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -368862,17 +273202,12 @@ }, { "id": 19132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368883,17 +273218,12 @@ }, { "id": 19133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368904,17 +273234,12 @@ }, { "id": 19134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -368923,17 +273248,12 @@ }, { "id": 19135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368944,17 +273264,12 @@ }, { "id": 19136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -368965,34 +273280,24 @@ }, { "id": 19137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369001,17 +273306,12 @@ }, { "id": 19139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369020,34 +273320,24 @@ }, { "id": 19140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369056,17 +273346,12 @@ }, { "id": 19142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369075,17 +273360,12 @@ }, { "id": 19143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -369093,17 +273373,12 @@ }, { "id": 19144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369113,17 +273388,12 @@ }, { "id": 19145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369133,17 +273403,12 @@ }, { "id": 19146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -369151,17 +273416,12 @@ }, { "id": 19147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369171,17 +273431,12 @@ }, { "id": 19148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369191,34 +273446,24 @@ }, { "id": 19149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 19150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -369226,17 +273471,12 @@ }, { "id": 19151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -369244,34 +273484,24 @@ }, { "id": 19152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 19153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -369279,17 +273509,12 @@ }, { "id": 19154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -369297,17 +273522,12 @@ }, { "id": 19155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -369316,17 +273536,12 @@ }, { "id": 19156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369337,17 +273552,12 @@ }, { "id": 19157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369358,17 +273568,12 @@ }, { "id": 19158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -369377,17 +273582,12 @@ }, { "id": 19159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369398,17 +273598,12 @@ }, { "id": 19160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369419,34 +273614,24 @@ }, { "id": 19161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369455,17 +273640,12 @@ }, { "id": 19163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369474,34 +273654,24 @@ }, { "id": 19164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369510,17 +273680,12 @@ }, { "id": 19166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369529,17 +273694,12 @@ }, { "id": 19167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -369548,17 +273708,12 @@ }, { "id": 19168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369569,17 +273724,12 @@ }, { "id": 19169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369590,17 +273740,12 @@ }, { "id": 19170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -369609,17 +273754,12 @@ }, { "id": 19171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369630,17 +273770,12 @@ }, { "id": 19172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -369651,34 +273786,24 @@ }, { "id": 19173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369687,17 +273812,12 @@ }, { "id": 19175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369706,34 +273826,24 @@ }, { "id": 19176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 19177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369742,17 +273852,12 @@ }, { "id": 19178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -369761,17 +273866,12 @@ }, { "id": 19179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -369779,17 +273879,12 @@ }, { "id": 19180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -369798,17 +273893,12 @@ }, { "id": 19181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -369817,17 +273907,12 @@ }, { "id": 19182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -369835,17 +273920,12 @@ }, { "id": 19183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -369854,17 +273934,12 @@ }, { "id": 19184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -369873,119 +273948,84 @@ }, { "id": 19185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 19186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 19189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -369994,17 +274034,12 @@ }, { "id": 19192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370014,17 +274049,12 @@ }, { "id": 19193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370034,17 +274064,12 @@ }, { "id": 19194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -370053,17 +274078,12 @@ }, { "id": 19195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370073,17 +274093,12 @@ }, { "id": 19196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370093,17 +274108,12 @@ }, { "id": 19197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -370111,17 +274121,12 @@ }, { "id": 19198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370129,17 +274134,12 @@ }, { "id": 19199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370147,17 +274147,12 @@ }, { "id": 19200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -370165,17 +274160,12 @@ }, { "id": 19201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370183,17 +274173,12 @@ }, { "id": 19202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370201,17 +274186,12 @@ }, { "id": 19203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -370220,17 +274200,12 @@ }, { "id": 19204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370240,17 +274215,12 @@ }, { "id": 19205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370260,17 +274230,12 @@ }, { "id": 19206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -370279,17 +274244,12 @@ }, { "id": 19207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370299,17 +274259,12 @@ }, { "id": 19208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370319,17 +274274,12 @@ }, { "id": 19209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -370337,17 +274287,12 @@ }, { "id": 19210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370355,17 +274300,12 @@ }, { "id": 19211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370373,17 +274313,12 @@ }, { "id": 19212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -370391,17 +274326,12 @@ }, { "id": 19213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370409,17 +274339,12 @@ }, { "id": 19214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -370427,17 +274352,12 @@ }, { "id": 19215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -370446,17 +274366,12 @@ }, { "id": 19216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370466,17 +274381,12 @@ }, { "id": 19217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370486,17 +274396,12 @@ }, { "id": 19218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -370505,17 +274410,12 @@ }, { "id": 19219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370525,17 +274425,12 @@ }, { "id": 19220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370545,17 +274440,12 @@ }, { "id": 19221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -370563,17 +274453,12 @@ }, { "id": 19222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -370581,17 +274466,12 @@ }, { "id": 19223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -370599,17 +274479,12 @@ }, { "id": 19224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -370617,17 +274492,12 @@ }, { "id": 19225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -370635,17 +274505,12 @@ }, { "id": 19226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -370653,17 +274518,12 @@ }, { "id": 19227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -370673,17 +274533,12 @@ }, { "id": 19228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370694,17 +274549,12 @@ }, { "id": 19229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370715,17 +274565,12 @@ }, { "id": 19230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -370735,17 +274580,12 @@ }, { "id": 19231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370756,17 +274596,12 @@ }, { "id": 19232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370777,17 +274612,12 @@ }, { "id": 19233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -370795,17 +274625,12 @@ }, { "id": 19234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -370814,17 +274639,12 @@ }, { "id": 19235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -370833,17 +274653,12 @@ }, { "id": 19236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -370851,17 +274666,12 @@ }, { "id": 19237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -370870,17 +274680,12 @@ }, { "id": 19238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -370889,17 +274694,12 @@ }, { "id": 19239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -370909,17 +274709,12 @@ }, { "id": 19240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370930,17 +274725,12 @@ }, { "id": 19241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370951,17 +274741,12 @@ }, { "id": 19242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -370971,17 +274756,12 @@ }, { "id": 19243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -370992,17 +274772,12 @@ }, { "id": 19244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371013,17 +274788,12 @@ }, { "id": 19245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -371031,17 +274801,12 @@ }, { "id": 19246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371050,17 +274815,12 @@ }, { "id": 19247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371069,17 +274829,12 @@ }, { "id": 19248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -371087,17 +274842,12 @@ }, { "id": 19249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371106,17 +274856,12 @@ }, { "id": 19250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371125,17 +274870,12 @@ }, { "id": 19251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -371144,17 +274884,12 @@ }, { "id": 19252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371164,17 +274899,12 @@ }, { "id": 19253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371184,17 +274914,12 @@ }, { "id": 19254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -371203,17 +274928,12 @@ }, { "id": 19255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371223,17 +274943,12 @@ }, { "id": 19256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371243,17 +274958,12 @@ }, { "id": 19257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -371261,17 +274971,12 @@ }, { "id": 19258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -371279,17 +274984,12 @@ }, { "id": 19259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -371297,17 +274997,12 @@ }, { "id": 19260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -371315,17 +275010,12 @@ }, { "id": 19261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -371333,17 +275023,12 @@ }, { "id": 19262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -371351,17 +275036,12 @@ }, { "id": 19263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -371371,17 +275051,12 @@ }, { "id": 19264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371392,17 +275067,12 @@ }, { "id": 19265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371413,17 +275083,12 @@ }, { "id": 19266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -371433,17 +275098,12 @@ }, { "id": 19267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371454,17 +275114,12 @@ }, { "id": 19268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371475,17 +275130,12 @@ }, { "id": 19269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -371493,17 +275143,12 @@ }, { "id": 19270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371512,17 +275157,12 @@ }, { "id": 19271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371531,17 +275171,12 @@ }, { "id": 19272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -371549,17 +275184,12 @@ }, { "id": 19273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371568,17 +275198,12 @@ }, { "id": 19274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371587,17 +275212,12 @@ }, { "id": 19275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -371607,17 +275227,12 @@ }, { "id": 19276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371628,17 +275243,12 @@ }, { "id": 19277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371649,17 +275259,12 @@ }, { "id": 19278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -371669,17 +275274,12 @@ }, { "id": 19279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371690,17 +275290,12 @@ }, { "id": 19280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371711,17 +275306,12 @@ }, { "id": 19281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -371729,17 +275319,12 @@ }, { "id": 19282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371748,17 +275333,12 @@ }, { "id": 19283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371767,17 +275347,12 @@ }, { "id": 19284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -371785,17 +275360,12 @@ }, { "id": 19285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371804,17 +275374,12 @@ }, { "id": 19286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -371823,17 +275388,12 @@ }, { "id": 19287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -371841,17 +275401,12 @@ }, { "id": 19288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371860,17 +275415,12 @@ }, { "id": 19289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371879,17 +275429,12 @@ }, { "id": 19290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -371897,17 +275442,12 @@ }, { "id": 19291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371916,17 +275456,12 @@ }, { "id": 19292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -371935,119 +275470,84 @@ }, { "id": 19293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 19294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 19297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 19299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -372056,17 +275556,12 @@ }, { "id": 19300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372076,17 +275571,12 @@ }, { "id": 19301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372096,17 +275586,12 @@ }, { "id": 19302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -372115,17 +275600,12 @@ }, { "id": 19303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372135,17 +275615,12 @@ }, { "id": 19304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372155,17 +275630,12 @@ }, { "id": 19305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -372173,17 +275643,12 @@ }, { "id": 19306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372191,17 +275656,12 @@ }, { "id": 19307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372209,17 +275669,12 @@ }, { "id": 19308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -372227,17 +275682,12 @@ }, { "id": 19309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372245,17 +275695,12 @@ }, { "id": 19310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372263,17 +275708,12 @@ }, { "id": 19311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -372282,17 +275722,12 @@ }, { "id": 19312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372302,17 +275737,12 @@ }, { "id": 19313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372322,17 +275752,12 @@ }, { "id": 19314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -372341,17 +275766,12 @@ }, { "id": 19315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372361,17 +275781,12 @@ }, { "id": 19316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372381,17 +275796,12 @@ }, { "id": 19317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -372399,17 +275809,12 @@ }, { "id": 19318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372417,17 +275822,12 @@ }, { "id": 19319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372435,17 +275835,12 @@ }, { "id": 19320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -372453,17 +275848,12 @@ }, { "id": 19321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372471,17 +275861,12 @@ }, { "id": 19322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -372489,17 +275874,12 @@ }, { "id": 19323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -372508,17 +275888,12 @@ }, { "id": 19324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372528,17 +275903,12 @@ }, { "id": 19325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372548,17 +275918,12 @@ }, { "id": 19326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -372567,17 +275932,12 @@ }, { "id": 19327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372587,17 +275947,12 @@ }, { "id": 19328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372607,17 +275962,12 @@ }, { "id": 19329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -372625,17 +275975,12 @@ }, { "id": 19330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -372643,17 +275988,12 @@ }, { "id": 19331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -372661,17 +276001,12 @@ }, { "id": 19332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -372679,17 +276014,12 @@ }, { "id": 19333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -372697,17 +276027,12 @@ }, { "id": 19334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -372715,17 +276040,12 @@ }, { "id": 19335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -372735,17 +276055,12 @@ }, { "id": 19336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372756,17 +276071,12 @@ }, { "id": 19337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372777,17 +276087,12 @@ }, { "id": 19338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -372797,17 +276102,12 @@ }, { "id": 19339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372818,17 +276118,12 @@ }, { "id": 19340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372839,17 +276134,12 @@ }, { "id": 19341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -372857,17 +276147,12 @@ }, { "id": 19342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -372876,17 +276161,12 @@ }, { "id": 19343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -372895,17 +276175,12 @@ }, { "id": 19344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -372913,17 +276188,12 @@ }, { "id": 19345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -372932,17 +276202,12 @@ }, { "id": 19346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -372951,17 +276216,12 @@ }, { "id": 19347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -372971,17 +276231,12 @@ }, { "id": 19348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -372992,17 +276247,12 @@ }, { "id": 19349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373013,17 +276263,12 @@ }, { "id": 19350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373033,17 +276278,12 @@ }, { "id": 19351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373054,17 +276294,12 @@ }, { "id": 19352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373075,17 +276310,12 @@ }, { "id": 19353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -373093,17 +276323,12 @@ }, { "id": 19354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373112,17 +276337,12 @@ }, { "id": 19355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373131,17 +276351,12 @@ }, { "id": 19356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -373149,17 +276364,12 @@ }, { "id": 19357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373168,17 +276378,12 @@ }, { "id": 19358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373187,17 +276392,12 @@ }, { "id": 19359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373206,17 +276406,12 @@ }, { "id": 19360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373226,17 +276421,12 @@ }, { "id": 19361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373246,17 +276436,12 @@ }, { "id": 19362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373265,17 +276450,12 @@ }, { "id": 19363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373285,17 +276465,12 @@ }, { "id": 19364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373305,17 +276480,12 @@ }, { "id": 19365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -373323,17 +276493,12 @@ }, { "id": 19366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -373341,17 +276506,12 @@ }, { "id": 19367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -373359,17 +276519,12 @@ }, { "id": 19368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -373377,17 +276532,12 @@ }, { "id": 19369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -373395,17 +276545,12 @@ }, { "id": 19370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -373413,17 +276558,12 @@ }, { "id": 19371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373433,17 +276573,12 @@ }, { "id": 19372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373454,17 +276589,12 @@ }, { "id": 19373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373475,17 +276605,12 @@ }, { "id": 19374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373495,17 +276620,12 @@ }, { "id": 19375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373516,17 +276636,12 @@ }, { "id": 19376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373537,17 +276652,12 @@ }, { "id": 19377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -373555,17 +276665,12 @@ }, { "id": 19378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373574,17 +276679,12 @@ }, { "id": 19379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373593,17 +276693,12 @@ }, { "id": 19380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -373611,17 +276706,12 @@ }, { "id": 19381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373630,17 +276720,12 @@ }, { "id": 19382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373649,17 +276734,12 @@ }, { "id": 19383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373669,17 +276749,12 @@ }, { "id": 19384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373690,17 +276765,12 @@ }, { "id": 19385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373711,17 +276781,12 @@ }, { "id": 19386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -373731,17 +276796,12 @@ }, { "id": 19387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373752,17 +276812,12 @@ }, { "id": 19388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -373773,17 +276828,12 @@ }, { "id": 19389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -373791,17 +276841,12 @@ }, { "id": 19390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373810,17 +276855,12 @@ }, { "id": 19391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373829,17 +276869,12 @@ }, { "id": 19392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -373847,17 +276882,12 @@ }, { "id": 19393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373866,17 +276896,12 @@ }, { "id": 19394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -373917,24 +276942,19 @@ ] }, "properties": [ - -1629356982, - -153764224, - 795783032 + -1435933095, + -798612393, + 989206919 ], "default_state_id": 19426, "states": [ { "id": 19395, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -373947,16 +276967,11 @@ }, { "id": 19396, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -373969,16 +276984,11 @@ }, { "id": 19397, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -373991,16 +277001,11 @@ }, { "id": 19398, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374013,16 +277018,11 @@ }, { "id": 19399, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374035,16 +277035,11 @@ }, { "id": 19400, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374057,16 +277052,11 @@ }, { "id": 19401, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374079,16 +277069,11 @@ }, { "id": 19402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374101,16 +277086,11 @@ }, { "id": 19403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374123,16 +277103,11 @@ }, { "id": 19404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374145,16 +277120,11 @@ }, { "id": 19405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374167,16 +277137,11 @@ }, { "id": 19406, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374189,16 +277154,11 @@ }, { "id": 19407, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374211,16 +277171,11 @@ }, { "id": 19408, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374233,16 +277188,11 @@ }, { "id": 19409, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374255,16 +277205,11 @@ }, { "id": 19410, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374277,16 +277222,11 @@ }, { "id": 19411, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374299,16 +277239,11 @@ }, { "id": 19412, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374321,16 +277256,11 @@ }, { "id": 19413, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374343,16 +277273,11 @@ }, { "id": 19414, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374365,16 +277290,11 @@ }, { "id": 19415, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374387,16 +277307,11 @@ }, { "id": 19416, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374409,16 +277324,11 @@ }, { "id": 19417, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374431,16 +277341,11 @@ }, { "id": 19418, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374453,16 +277358,11 @@ }, { "id": 19419, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374475,16 +277375,11 @@ }, { "id": 19420, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374497,16 +277392,11 @@ }, { "id": 19421, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374519,16 +277409,11 @@ }, { "id": 19422, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374541,16 +277426,11 @@ }, { "id": 19423, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374563,16 +277443,11 @@ }, { "id": 19424, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374585,16 +277460,11 @@ }, { "id": 19425, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374607,16 +277477,11 @@ }, { "id": 19426, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 231, 232, @@ -374661,74 +277526,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 19427, "states": [ { "id": 19427, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19428, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19429, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19430, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -374776,24 +277621,19 @@ ] }, "properties": [ - 1627058566, - -242710423 + 2060047744, + -49286536 ], "default_state_id": 19432, "states": [ { "id": 19431, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374801,17 +277641,12 @@ }, { "id": 19432, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374819,17 +277654,12 @@ }, { "id": 19433, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374837,17 +277667,12 @@ }, { "id": 19434, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374855,17 +277680,12 @@ }, { "id": 19435, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374873,17 +277693,12 @@ }, { "id": 19436, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374891,17 +277706,12 @@ }, { "id": 19437, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374909,17 +277719,12 @@ }, { "id": 19438, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374927,17 +277732,12 @@ }, { "id": 19439, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374945,17 +277745,12 @@ }, { "id": 19440, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374963,17 +277758,12 @@ }, { "id": 19441, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -374981,17 +277771,12 @@ }, { "id": 19442, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375040,24 +277825,19 @@ ] }, "properties": [ - -1870206692, - -246020938 + 1877134791, + -52597051 ], "default_state_id": 19444, "states": [ { "id": 19443, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375065,17 +277845,12 @@ }, { "id": 19444, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375083,17 +277858,12 @@ }, { "id": 19445, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375101,17 +277871,12 @@ }, { "id": 19446, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375119,17 +277884,12 @@ }, { "id": 19447, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375137,17 +277897,12 @@ }, { "id": 19448, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375155,17 +277910,12 @@ }, { "id": 19449, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375173,17 +277923,12 @@ }, { "id": 19450, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375232,24 +277977,19 @@ ] }, "properties": [ - -1870206692, - -246020938 + 1877134791, + -52597051 ], "default_state_id": 19452, "states": [ { "id": 19451, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375257,17 +277997,12 @@ }, { "id": 19452, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375275,17 +278010,12 @@ }, { "id": 19453, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375293,17 +278023,12 @@ }, { "id": 19454, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375311,17 +278036,12 @@ }, { "id": 19455, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375329,17 +278049,12 @@ }, { "id": 19456, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375347,17 +278062,12 @@ }, { "id": 19457, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 13, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375365,17 +278075,12 @@ }, { "id": 19458, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -375419,17 +278124,12 @@ "states": [ { "id": 19459, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -375472,17 +278172,12 @@ "states": [ { "id": 19460, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -375521,24 +278216,19 @@ ] }, "properties": [ - 882382600, - -1870206692 + -1094626518, + 1877134791 ], "default_state_id": 19465, "states": [ { "id": 19461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 238, 239, @@ -375551,17 +278241,12 @@ }, { "id": 19462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 238, 239, @@ -375574,17 +278259,12 @@ }, { "id": 19463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 245, 246, @@ -375597,17 +278277,12 @@ }, { "id": 19464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 245, 246, @@ -375620,17 +278295,12 @@ }, { "id": 19465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 252, 253, @@ -375641,17 +278311,12 @@ }, { "id": 19466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 257, 258, @@ -375662,17 +278327,12 @@ }, { "id": 19467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 262, 263, @@ -375683,17 +278343,12 @@ }, { "id": 19468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 267, 268, @@ -375704,17 +278359,12 @@ }, { "id": 19469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 272, 273, @@ -375725,17 +278375,12 @@ }, { "id": 19470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 272, 273, @@ -375746,17 +278391,12 @@ }, { "id": 19471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 277, 278, @@ -375767,17 +278407,12 @@ }, { "id": 19472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 277, 278, @@ -375820,25 +278455,20 @@ ] }, "properties": [ - -1870206692, - -105819251, - -634074493 + 1877134791, + 87604636, + -440650606 ], "default_state_id": 19476, "states": [ { "id": 19473, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375847,17 +278477,12 @@ }, { "id": 19474, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375866,17 +278491,12 @@ }, { "id": 19475, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375885,17 +278505,12 @@ }, { "id": 19476, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375904,17 +278519,12 @@ }, { "id": 19477, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375923,17 +278533,12 @@ }, { "id": 19478, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375942,17 +278547,12 @@ }, { "id": 19479, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375961,17 +278561,12 @@ }, { "id": 19480, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375980,17 +278575,12 @@ }, { "id": 19481, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -375999,17 +278589,12 @@ }, { "id": 19482, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376018,17 +278603,12 @@ }, { "id": 19483, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376037,17 +278617,12 @@ }, { "id": 19484, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376056,17 +278631,12 @@ }, { "id": 19485, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376075,17 +278645,12 @@ }, { "id": 19486, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376094,17 +278659,12 @@ }, { "id": 19487, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376113,17 +278673,12 @@ }, { "id": 19488, - "air": false, - "is_solid": true, + "state_flags": 74, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 70, 282 @@ -376168,17 +278723,12 @@ "states": [ { "id": 19489, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -376217,74 +278767,54 @@ ] }, "properties": [ - -1870206692 + 1877134791 ], "default_state_id": 19490, "states": [ { "id": 19490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 283 ] }, { "id": 19491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 283 ] }, { "id": 19492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 283 ] }, { "id": 19493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 283 ] @@ -376323,25 +278853,20 @@ ] }, "properties": [ - 1698821785, - -1870206692, - -634074493 + -1623305327, + 1877134791, + -440650606 ], "default_state_id": 19495, "states": [ { "id": 19494, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 284 ], @@ -376349,17 +278874,12 @@ }, { "id": 19495, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 284 ], @@ -376367,17 +278887,12 @@ }, { "id": 19496, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 284 ], @@ -376385,17 +278900,12 @@ }, { "id": 19497, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 284 ], @@ -376403,17 +278913,12 @@ }, { "id": 19498, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 285 ], @@ -376421,17 +278926,12 @@ }, { "id": 19499, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 285 ], @@ -376439,17 +278939,12 @@ }, { "id": 19500, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 285 ], @@ -376457,17 +278952,12 @@ }, { "id": 19501, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 285 ], @@ -376475,17 +278965,12 @@ }, { "id": 19502, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376495,17 +278980,12 @@ }, { "id": 19503, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376515,17 +278995,12 @@ }, { "id": 19504, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376535,17 +279010,12 @@ }, { "id": 19505, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376555,17 +279025,12 @@ }, { "id": 19506, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376575,17 +279040,12 @@ }, { "id": 19507, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376595,17 +279055,12 @@ }, { "id": 19508, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376615,17 +279070,12 @@ }, { "id": 19509, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376635,17 +279085,12 @@ }, { "id": 19510, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376655,17 +279100,12 @@ }, { "id": 19511, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376675,17 +279115,12 @@ }, { "id": 19512, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376695,17 +279130,12 @@ }, { "id": 19513, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376715,17 +279145,12 @@ }, { "id": 19514, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376735,17 +279160,12 @@ }, { "id": 19515, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376755,17 +279175,12 @@ }, { "id": 19516, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376775,17 +279190,12 @@ }, { "id": 19517, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376795,17 +279205,12 @@ }, { "id": 19518, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376815,17 +279220,12 @@ }, { "id": 19519, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376835,17 +279235,12 @@ }, { "id": 19520, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376855,17 +279250,12 @@ }, { "id": 19521, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376875,17 +279265,12 @@ }, { "id": 19522, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376895,17 +279280,12 @@ }, { "id": 19523, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376915,17 +279295,12 @@ }, { "id": 19524, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376935,17 +279310,12 @@ }, { "id": 19525, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 5.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 286, 287, @@ -376987,23 +279357,18 @@ ] }, "properties": [ - 446762063, - 795783032 + 640185950, + 989206919 ], "default_state_id": 19529, "states": [ { "id": 19526, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 295, 296 @@ -377011,16 +279376,11 @@ }, { "id": 19527, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 295, 296 @@ -377028,16 +279388,11 @@ }, { "id": 19528, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 297, 298 @@ -377045,16 +279400,11 @@ }, { "id": 19529, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 297, 298 @@ -377094,23 +279444,18 @@ ] }, "properties": [ - 446762063, - 795783032 + 640185950, + 989206919 ], "default_state_id": 19533, "states": [ { "id": 19530, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 295, 296 @@ -377118,16 +279463,11 @@ }, { "id": 19531, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 295, 296 @@ -377135,16 +279475,11 @@ }, { "id": 19532, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 297, 298 @@ -377152,16 +279487,11 @@ }, { "id": 19533, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 297, 298 @@ -377234,25 +279564,20 @@ ] }, "properties": [ - -1870206692, - -246020938, - 426544012, - 795783032 + 1877134791, + -52597051, + 619967899, + 989206919 ], "default_state_id": 19537, "states": [ { "id": 19534, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377260,16 +279585,11 @@ }, { "id": 19535, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377277,16 +279597,11 @@ }, { "id": 19536, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377294,16 +279609,11 @@ }, { "id": 19537, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377311,16 +279621,11 @@ }, { "id": 19538, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377328,16 +279633,11 @@ }, { "id": 19539, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377345,16 +279645,11 @@ }, { "id": 19540, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377362,16 +279657,11 @@ }, { "id": 19541, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377379,16 +279669,11 @@ }, { "id": 19542, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377396,16 +279681,11 @@ }, { "id": 19543, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377413,16 +279693,11 @@ }, { "id": 19544, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377430,16 +279705,11 @@ }, { "id": 19545, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377447,16 +279717,11 @@ }, { "id": 19546, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377464,16 +279729,11 @@ }, { "id": 19547, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377481,16 +279741,11 @@ }, { "id": 19548, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377498,16 +279753,11 @@ }, { "id": 19549, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377515,16 +279765,11 @@ }, { "id": 19550, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377532,16 +279777,11 @@ }, { "id": 19551, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377549,16 +279789,11 @@ }, { "id": 19552, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377566,16 +279801,11 @@ }, { "id": 19553, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377583,16 +279813,11 @@ }, { "id": 19554, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377600,16 +279825,11 @@ }, { "id": 19555, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377617,16 +279837,11 @@ }, { "id": 19556, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377634,16 +279849,11 @@ }, { "id": 19557, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377651,16 +279861,11 @@ }, { "id": 19558, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377668,16 +279873,11 @@ }, { "id": 19559, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377685,16 +279885,11 @@ }, { "id": 19560, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377702,16 +279897,11 @@ }, { "id": 19561, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 15, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377719,16 +279909,11 @@ }, { "id": 19562, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377736,16 +279921,11 @@ }, { "id": 19563, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377753,16 +279933,11 @@ }, { "id": 19564, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377770,16 +279945,11 @@ }, { "id": 19565, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377852,25 +280022,20 @@ ] }, "properties": [ - -1870206692, - -246020938, - 426544012, - 795783032 + 1877134791, + -52597051, + 619967899, + 989206919 ], "default_state_id": 19569, "states": [ { "id": 19566, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377878,16 +280043,11 @@ }, { "id": 19567, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377895,16 +280055,11 @@ }, { "id": 19568, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377912,16 +280067,11 @@ }, { "id": 19569, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377929,16 +280079,11 @@ }, { "id": 19570, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377946,16 +280091,11 @@ }, { "id": 19571, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377963,16 +280103,11 @@ }, { "id": 19572, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377980,16 +280115,11 @@ }, { "id": 19573, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -377997,16 +280127,11 @@ }, { "id": 19574, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378014,16 +280139,11 @@ }, { "id": 19575, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378031,16 +280151,11 @@ }, { "id": 19576, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378048,16 +280163,11 @@ }, { "id": 19577, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378065,16 +280175,11 @@ }, { "id": 19578, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378082,16 +280187,11 @@ }, { "id": 19579, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378099,16 +280199,11 @@ }, { "id": 19580, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378116,16 +280211,11 @@ }, { "id": 19581, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378133,16 +280223,11 @@ }, { "id": 19582, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378150,16 +280235,11 @@ }, { "id": 19583, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378167,16 +280247,11 @@ }, { "id": 19584, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378184,16 +280259,11 @@ }, { "id": 19585, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378201,16 +280271,11 @@ }, { "id": 19586, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378218,16 +280283,11 @@ }, { "id": 19587, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378235,16 +280295,11 @@ }, { "id": 19588, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378252,16 +280307,11 @@ }, { "id": 19589, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378269,16 +280319,11 @@ }, { "id": 19590, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378286,16 +280331,11 @@ }, { "id": 19591, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378303,16 +280343,11 @@ }, { "id": 19592, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378320,16 +280355,11 @@ }, { "id": 19593, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 10, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378337,16 +280367,11 @@ }, { "id": 19594, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378354,16 +280379,11 @@ }, { "id": 19595, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378371,16 +280391,11 @@ }, { "id": 19596, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378388,16 +280403,11 @@ }, { "id": 19597, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 299 ], @@ -378503,64 +280513,44 @@ ] }, "properties": [ - 357631796 + -287216373 ], "default_state_id": 19598, "states": [ { "id": 19598, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19599, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19600, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19601, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -378597,57 +280587,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19603, "states": [ { "id": 19602, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19603, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19604, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -378686,57 +280661,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19606, "states": [ { "id": 19605, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19606, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19607, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -378775,57 +280735,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19609, "states": [ { "id": 19608, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19609, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19610, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -378864,57 +280809,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19612, "states": [ { "id": 19611, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19612, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19613, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -378983,17 +280913,12 @@ "states": [ { "id": 19614, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379036,16 +280961,11 @@ "states": [ { "id": 19615, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -379086,17 +281006,12 @@ "states": [ { "id": 19616, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379139,16 +281054,11 @@ "states": [ { "id": 19617, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -379192,16 +281102,11 @@ "states": [ { "id": 19618, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -379238,57 +281143,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19620, "states": [ { "id": 19619, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19620, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19621, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379327,57 +281217,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19623, "states": [ { "id": 19622, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19623, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19624, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379416,57 +281291,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19626, "states": [ { "id": 19625, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19626, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19627, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379505,57 +281365,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 19629, "states": [ { "id": 19628, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19629, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19630, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379624,17 +281469,12 @@ "states": [ { "id": 19631, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.4, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379677,16 +281517,11 @@ "states": [ { "id": 19632, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -379727,17 +281562,12 @@ "states": [ { "id": 19633, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -379820,372 +281650,242 @@ ] }, "properties": [ - 169292927 + -475555242 ], "default_state_id": 19634, "states": [ { "id": 19634, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19635, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19636, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19637, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19638, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19639, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19640, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19641, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19642, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19643, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19644, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19645, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19646, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19647, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19648, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19649, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19650, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19651, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19652, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19653, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19654, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19655, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19656, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19657, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19658, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19659, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -380270,16 +281970,11 @@ "states": [ { "id": 19660, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -380360,372 +282055,242 @@ ] }, "properties": [ - 169292927 + -475555242 ], "default_state_id": 19661, "states": [ { "id": 19661, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19662, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19663, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19664, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19665, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19666, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19667, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19668, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19669, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19670, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19671, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19672, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19673, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19674, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19675, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19676, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19677, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19678, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19679, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19680, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19681, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19682, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19683, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19684, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19685, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19686, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -380810,16 +282375,11 @@ "states": [ { "id": 19687, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -380860,16 +282420,11 @@ "states": [ { "id": 19688, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -380910,17 +282465,12 @@ "states": [ { "id": 19689, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -380963,17 +282513,12 @@ "states": [ { "id": 19690, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -381026,109 +282571,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 19694, "states": [ { "id": 19691, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 19692, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 19693, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 19694, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 19695, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19696, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -381181,109 +282696,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 19700, "states": [ { "id": 19697, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 19698, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 19699, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 19700, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 19701, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 19702, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -381322,36 +282807,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 19704, "states": [ { "id": 19703, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19704, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -381388,36 +282863,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 19706, "states": [ { "id": 19705, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19706, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -381454,27 +282919,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 19738, "states": [ { "id": 19707, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -381483,17 +282943,12 @@ }, { "id": 19708, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -381501,17 +282956,12 @@ }, { "id": 19709, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -381520,17 +282970,12 @@ }, { "id": 19710, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -381538,17 +282983,12 @@ }, { "id": 19711, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -381556,17 +282996,12 @@ }, { "id": 19712, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -381574,17 +283009,12 @@ }, { "id": 19713, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -381592,17 +283022,12 @@ }, { "id": 19714, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -381610,17 +283035,12 @@ }, { "id": 19715, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -381628,17 +283048,12 @@ }, { "id": 19716, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -381646,17 +283061,12 @@ }, { "id": 19717, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -381664,17 +283074,12 @@ }, { "id": 19718, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -381682,85 +283087,60 @@ }, { "id": 19719, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19720, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 19721, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19722, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 19723, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -381769,34 +283149,24 @@ }, { "id": 19724, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19725, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -381805,34 +283175,24 @@ }, { "id": 19726, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19727, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -381840,34 +283200,24 @@ }, { "id": 19728, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 19729, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -381875,34 +283225,24 @@ }, { "id": 19730, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 19731, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -381910,34 +283250,24 @@ }, { "id": 19732, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 19733, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -381945,85 +283275,60 @@ }, { "id": 19734, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 19735, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 19736, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 19737, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 19738, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -382062,27 +283367,22 @@ ] }, "properties": [ - -243022308, - -141120732, - -136500244, - 795783032, - -242482226 + -49598421, + 52303155, + 56923643, + 989206919, + -49058339 ], "default_state_id": 19770, "states": [ { "id": 19739, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -382091,17 +283391,12 @@ }, { "id": 19740, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -382109,17 +283404,12 @@ }, { "id": 19741, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76, @@ -382128,17 +283418,12 @@ }, { "id": 19742, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78, 79 @@ -382146,17 +283431,12 @@ }, { "id": 19743, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -382164,17 +283444,12 @@ }, { "id": 19744, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -382182,17 +283457,12 @@ }, { "id": 19745, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 76 @@ -382200,17 +283470,12 @@ }, { "id": 19746, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80, 79 @@ -382218,17 +283483,12 @@ }, { "id": 19747, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -382236,17 +283496,12 @@ }, { "id": 19748, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -382254,17 +283509,12 @@ }, { "id": 19749, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75, 77 @@ -382272,17 +283522,12 @@ }, { "id": 19750, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81, 79 @@ -382290,85 +283535,60 @@ }, { "id": 19751, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19752, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 19753, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19754, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 82 ] }, { "id": 19755, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -382377,34 +283597,24 @@ }, { "id": 19756, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19757, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76, @@ -382413,34 +283623,24 @@ }, { "id": 19758, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19759, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -382448,34 +283648,24 @@ }, { "id": 19760, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 19761, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 76 @@ -382483,34 +283673,24 @@ }, { "id": 19762, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 80 ] }, { "id": 19763, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -382518,34 +283698,24 @@ }, { "id": 19764, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 19765, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83, 77 @@ -382553,85 +283723,60 @@ }, { "id": 19766, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 81 ] }, { "id": 19767, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 19768, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] }, { "id": 19769, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 83 ] }, { "id": 19770, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 84 ] @@ -382670,1034 +283815,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 19786, "states": [ { "id": 19771, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19772, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19773, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19774, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19775, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19776, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19777, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19778, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19779, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19780, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19781, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19782, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19783, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19784, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19785, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19786, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19787, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19788, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19789, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19790, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19791, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19792, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19793, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19794, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19795, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19796, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19797, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19798, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19799, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19800, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19801, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19802, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19803, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19804, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19805, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19806, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19807, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19808, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19809, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19810, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19811, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19812, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19813, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19814, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19815, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19816, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19817, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19818, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19819, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19820, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19821, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19822, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19823, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19824, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19825, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19826, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19827, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19828, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19829, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19830, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19831, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19832, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19833, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19834, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -383736,1034 +284561,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 19850, "states": [ { "id": 19835, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19836, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19837, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19838, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19839, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19840, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19841, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19842, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19843, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19844, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19845, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19846, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 19847, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19848, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19849, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19850, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19851, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19852, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19853, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19854, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19855, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19856, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19857, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19858, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19859, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19860, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19861, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19862, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 19863, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19864, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19865, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19866, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19867, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19868, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19869, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19870, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19871, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19872, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19873, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19874, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19875, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19876, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19877, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19878, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 19879, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19880, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19881, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19882, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19883, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19884, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19885, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19886, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19887, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19888, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19889, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19890, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 19891, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19892, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19893, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19894, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 19895, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19896, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19897, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 19898, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -384802,521 +285307,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 19906, "states": [ { "id": 19899, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19900, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19901, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19902, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19903, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19904, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19905, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19906, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19907, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19908, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19909, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19910, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19911, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19912, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19913, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19914, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19915, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19916, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19917, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19918, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19919, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19920, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19921, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19922, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19923, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19924, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19925, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19926, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19927, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19928, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19929, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19930, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -385355,521 +285700,361 @@ ] }, "properties": [ - -1870206692, - 1693060803, - -242710423, - -634074493 + 1877134791, + 1886484690, + -49286536, + -440650606 ], "default_state_id": 19938, "states": [ { "id": 19931, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19932, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19933, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19934, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19935, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19936, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19937, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19938, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19939, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19940, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19941, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19942, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19943, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19944, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19945, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19946, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 75 ] }, { "id": 19947, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19948, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19949, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19950, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19951, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19952, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19953, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19954, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19955, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19956, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19957, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19958, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19959, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19960, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 19961, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] }, { "id": 19962, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 78 ] @@ -385908,26 +286093,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 19974, "states": [ { "id": 19963, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -385935,17 +286115,12 @@ }, { "id": 19964, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -385953,17 +286128,12 @@ }, { "id": 19965, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -385972,17 +286142,12 @@ }, { "id": 19966, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -385991,17 +286156,12 @@ }, { "id": 19967, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -386010,17 +286170,12 @@ }, { "id": 19968, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -386029,17 +286184,12 @@ }, { "id": 19969, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -386048,17 +286198,12 @@ }, { "id": 19970, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -386067,17 +286212,12 @@ }, { "id": 19971, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -386086,17 +286226,12 @@ }, { "id": 19972, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -386105,17 +286240,12 @@ }, { "id": 19973, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -386123,17 +286253,12 @@ }, { "id": 19974, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -386141,17 +286266,12 @@ }, { "id": 19975, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386160,17 +286280,12 @@ }, { "id": 19976, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386179,17 +286294,12 @@ }, { "id": 19977, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -386198,17 +286308,12 @@ }, { "id": 19978, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -386217,17 +286322,12 @@ }, { "id": 19979, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -386235,17 +286335,12 @@ }, { "id": 19980, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -386253,17 +286348,12 @@ }, { "id": 19981, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -386271,17 +286361,12 @@ }, { "id": 19982, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -386289,17 +286374,12 @@ }, { "id": 19983, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -386307,17 +286387,12 @@ }, { "id": 19984, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -386325,17 +286400,12 @@ }, { "id": 19985, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -386344,17 +286414,12 @@ }, { "id": 19986, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -386363,17 +286428,12 @@ }, { "id": 19987, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -386382,17 +286442,12 @@ }, { "id": 19988, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -386401,17 +286456,12 @@ }, { "id": 19989, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -386420,17 +286470,12 @@ }, { "id": 19990, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -386439,17 +286484,12 @@ }, { "id": 19991, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -386458,17 +286498,12 @@ }, { "id": 19992, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -386477,17 +286512,12 @@ }, { "id": 19993, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -386495,17 +286525,12 @@ }, { "id": 19994, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -386513,17 +286538,12 @@ }, { "id": 19995, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -386532,17 +286552,12 @@ }, { "id": 19996, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -386551,17 +286566,12 @@ }, { "id": 19997, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386570,17 +286580,12 @@ }, { "id": 19998, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386589,17 +286594,12 @@ }, { "id": 19999, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -386607,17 +286607,12 @@ }, { "id": 20000, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -386625,17 +286620,12 @@ }, { "id": 20001, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -386643,17 +286633,12 @@ }, { "id": 20002, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -386661,17 +286646,12 @@ }, { "id": 20003, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -386679,17 +286659,12 @@ }, { "id": 20004, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -386697,17 +286672,12 @@ }, { "id": 20005, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -386716,17 +286686,12 @@ }, { "id": 20006, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -386735,17 +286700,12 @@ }, { "id": 20007, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -386754,17 +286714,12 @@ }, { "id": 20008, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -386773,17 +286728,12 @@ }, { "id": 20009, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -386792,17 +286742,12 @@ }, { "id": 20010, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -386811,17 +286756,12 @@ }, { "id": 20011, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -386830,17 +286770,12 @@ }, { "id": 20012, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -386849,17 +286784,12 @@ }, { "id": 20013, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -386867,17 +286797,12 @@ }, { "id": 20014, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -386885,17 +286810,12 @@ }, { "id": 20015, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386904,17 +286824,12 @@ }, { "id": 20016, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386923,17 +286838,12 @@ }, { "id": 20017, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386942,17 +286852,12 @@ }, { "id": 20018, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -386961,17 +286866,12 @@ }, { "id": 20019, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -386979,17 +286879,12 @@ }, { "id": 20020, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -386997,17 +286892,12 @@ }, { "id": 20021, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -387015,17 +286905,12 @@ }, { "id": 20022, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -387033,17 +286918,12 @@ }, { "id": 20023, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -387051,17 +286931,12 @@ }, { "id": 20024, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -387069,17 +286944,12 @@ }, { "id": 20025, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -387088,17 +286958,12 @@ }, { "id": 20026, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -387107,17 +286972,12 @@ }, { "id": 20027, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -387126,17 +286986,12 @@ }, { "id": 20028, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -387145,17 +287000,12 @@ }, { "id": 20029, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -387164,17 +287014,12 @@ }, { "id": 20030, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -387183,17 +287028,12 @@ }, { "id": 20031, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -387202,17 +287042,12 @@ }, { "id": 20032, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -387221,17 +287056,12 @@ }, { "id": 20033, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -387239,17 +287069,12 @@ }, { "id": 20034, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -387257,17 +287082,12 @@ }, { "id": 20035, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -387276,17 +287096,12 @@ }, { "id": 20036, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -387295,17 +287110,12 @@ }, { "id": 20037, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -387314,17 +287124,12 @@ }, { "id": 20038, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -387333,17 +287138,12 @@ }, { "id": 20039, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -387351,17 +287151,12 @@ }, { "id": 20040, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -387369,17 +287164,12 @@ }, { "id": 20041, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -387387,17 +287177,12 @@ }, { "id": 20042, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -387437,26 +287222,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 20054, "states": [ { "id": 20043, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -387464,17 +287244,12 @@ }, { "id": 20044, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -387482,17 +287257,12 @@ }, { "id": 20045, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -387501,17 +287271,12 @@ }, { "id": 20046, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -387520,17 +287285,12 @@ }, { "id": 20047, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -387539,17 +287299,12 @@ }, { "id": 20048, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -387558,17 +287313,12 @@ }, { "id": 20049, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -387577,17 +287327,12 @@ }, { "id": 20050, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -387596,17 +287341,12 @@ }, { "id": 20051, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -387615,17 +287355,12 @@ }, { "id": 20052, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -387634,17 +287369,12 @@ }, { "id": 20053, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -387652,17 +287382,12 @@ }, { "id": 20054, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -387670,17 +287395,12 @@ }, { "id": 20055, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -387689,17 +287409,12 @@ }, { "id": 20056, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -387708,17 +287423,12 @@ }, { "id": 20057, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -387727,17 +287437,12 @@ }, { "id": 20058, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -387746,17 +287451,12 @@ }, { "id": 20059, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -387764,17 +287464,12 @@ }, { "id": 20060, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -387782,17 +287477,12 @@ }, { "id": 20061, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -387800,17 +287490,12 @@ }, { "id": 20062, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -387818,17 +287503,12 @@ }, { "id": 20063, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -387836,17 +287516,12 @@ }, { "id": 20064, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -387854,17 +287529,12 @@ }, { "id": 20065, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -387873,17 +287543,12 @@ }, { "id": 20066, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -387892,17 +287557,12 @@ }, { "id": 20067, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -387911,17 +287571,12 @@ }, { "id": 20068, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -387930,17 +287585,12 @@ }, { "id": 20069, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -387949,17 +287599,12 @@ }, { "id": 20070, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -387968,17 +287613,12 @@ }, { "id": 20071, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -387987,17 +287627,12 @@ }, { "id": 20072, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -388006,17 +287641,12 @@ }, { "id": 20073, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -388024,17 +287654,12 @@ }, { "id": 20074, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -388042,17 +287667,12 @@ }, { "id": 20075, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -388061,17 +287681,12 @@ }, { "id": 20076, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -388080,17 +287695,12 @@ }, { "id": 20077, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -388099,17 +287709,12 @@ }, { "id": 20078, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -388118,17 +287723,12 @@ }, { "id": 20079, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -388136,17 +287736,12 @@ }, { "id": 20080, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -388154,17 +287749,12 @@ }, { "id": 20081, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -388172,17 +287762,12 @@ }, { "id": 20082, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -388190,17 +287775,12 @@ }, { "id": 20083, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -388208,17 +287788,12 @@ }, { "id": 20084, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -388226,17 +287801,12 @@ }, { "id": 20085, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -388245,17 +287815,12 @@ }, { "id": 20086, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -388264,17 +287829,12 @@ }, { "id": 20087, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -388283,17 +287843,12 @@ }, { "id": 20088, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -388302,17 +287857,12 @@ }, { "id": 20089, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -388321,17 +287871,12 @@ }, { "id": 20090, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -388340,17 +287885,12 @@ }, { "id": 20091, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -388359,17 +287899,12 @@ }, { "id": 20092, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -388378,17 +287913,12 @@ }, { "id": 20093, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -388396,17 +287926,12 @@ }, { "id": 20094, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -388414,17 +287939,12 @@ }, { "id": 20095, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -388433,17 +287953,12 @@ }, { "id": 20096, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -388452,17 +287967,12 @@ }, { "id": 20097, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -388471,17 +287981,12 @@ }, { "id": 20098, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -388490,17 +287995,12 @@ }, { "id": 20099, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -388508,17 +288008,12 @@ }, { "id": 20100, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -388526,17 +288021,12 @@ }, { "id": 20101, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -388544,17 +288034,12 @@ }, { "id": 20102, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -388562,17 +288047,12 @@ }, { "id": 20103, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -388580,17 +288060,12 @@ }, { "id": 20104, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -388598,17 +288073,12 @@ }, { "id": 20105, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -388617,17 +288087,12 @@ }, { "id": 20106, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -388636,17 +288101,12 @@ }, { "id": 20107, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -388655,17 +288115,12 @@ }, { "id": 20108, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -388674,17 +288129,12 @@ }, { "id": 20109, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -388693,17 +288143,12 @@ }, { "id": 20110, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -388712,17 +288157,12 @@ }, { "id": 20111, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -388731,17 +288171,12 @@ }, { "id": 20112, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -388750,17 +288185,12 @@ }, { "id": 20113, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -388768,17 +288198,12 @@ }, { "id": 20114, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -388786,17 +288211,12 @@ }, { "id": 20115, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -388805,17 +288225,12 @@ }, { "id": 20116, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -388824,17 +288239,12 @@ }, { "id": 20117, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -388843,17 +288253,12 @@ }, { "id": 20118, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -388862,17 +288267,12 @@ }, { "id": 20119, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -388880,17 +288280,12 @@ }, { "id": 20120, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -388898,17 +288293,12 @@ }, { "id": 20121, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -388916,17 +288306,12 @@ }, { "id": 20122, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -388966,346 +288351,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 20132, "states": [ { "id": 20123, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20124, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20125, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20126, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20127, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20128, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20129, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20130, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20131, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20132, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20133, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20134, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20135, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20136, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20137, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20138, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20139, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20140, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20141, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20142, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20143, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20144, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20145, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20146, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -389342,346 +288607,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 20156, "states": [ { "id": 20147, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20148, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20149, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20150, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20151, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20152, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20153, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20154, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20155, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20156, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20157, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20158, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20159, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20160, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20161, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20162, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20163, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20164, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20165, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20166, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20167, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20168, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20169, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20170, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -389727,1034 +288872,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 20182, "states": [ { "id": 20171, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20172, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20173, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20174, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20175, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20176, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20177, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20178, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20179, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20180, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20181, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20182, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20183, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20184, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20185, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20186, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20187, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20188, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20189, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20190, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20191, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20192, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20193, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20194, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20195, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20196, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20197, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20198, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20199, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20200, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20201, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20202, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20203, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20204, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20205, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20206, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20207, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20208, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20209, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20210, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20211, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20212, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20213, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20214, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20215, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20216, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20217, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20218, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20219, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20220, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20221, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20222, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20223, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20224, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20225, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20226, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20227, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20228, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20229, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20230, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20231, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20232, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20233, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20234, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -390802,1034 +289627,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 20246, "states": [ { "id": 20235, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20236, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20237, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20238, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20239, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20240, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20241, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20242, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20243, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20244, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20245, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20246, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20247, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20248, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20249, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20250, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20251, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20252, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20253, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20254, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20255, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20256, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20257, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20258, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20259, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20260, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20261, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20262, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20263, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20264, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20265, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20266, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20267, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20268, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20269, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20270, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20271, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20272, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20273, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20274, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20275, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20276, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20277, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20278, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20279, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20280, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20281, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20282, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 20283, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20284, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20285, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20286, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20287, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20288, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20289, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20290, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20291, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20292, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 20293, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20294, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20295, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20296, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 20297, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 20298, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -391868,488 +290373,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 20300, "states": [ { "id": 20299, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20300, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20301, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20302, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20303, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20304, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20305, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20306, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20307, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20308, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20309, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20310, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20311, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20312, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20313, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20314, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20315, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20316, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20317, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20318, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20319, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20320, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20321, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20322, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20323, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20324, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20325, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20326, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20327, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20328, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20329, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20330, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -392387,488 +290732,328 @@ ] }, "properties": [ - 1078043, - 795783032 + -643770126, + 989206919 ], "default_state_id": 20332, "states": [ { "id": 20331, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20332, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20333, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20334, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20335, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20336, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20337, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20338, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20339, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20340, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20341, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20342, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20343, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20344, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20345, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20346, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20347, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20348, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20349, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20350, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20351, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20352, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20353, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20354, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20355, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20356, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20357, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20358, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20359, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20360, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20361, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20362, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -392906,128 +291091,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 20364, "states": [ { "id": 20363, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20364, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20365, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20366, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20367, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20368, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20369, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20370, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -393065,128 +291210,88 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 20372, "states": [ { "id": 20371, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20372, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20373, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20374, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20375, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20376, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20377, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 }, { "id": 20378, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [], "block_entity_type": 7 } @@ -393203,23 +291308,18 @@ "blast_resistance": 3600000.0, "item_id": 830, "properties": [ - -208752983 + 159298445 ], "default_state_id": 20380, "states": [ { "id": 20379, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393227,17 +291327,12 @@ }, { "id": 20380, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393245,17 +291340,12 @@ }, { "id": 20381, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393263,17 +291353,12 @@ }, { "id": 20382, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393292,23 +291377,18 @@ "blast_resistance": 3600000.0, "item_id": 831, "properties": [ - -1177335375 + 1211358312 ], "default_state_id": 20393, "states": [ { "id": 20383, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393316,17 +291396,12 @@ }, { "id": 20384, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393334,17 +291409,12 @@ }, { "id": 20385, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393352,17 +291422,12 @@ }, { "id": 20386, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393370,17 +291435,12 @@ }, { "id": 20387, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393388,17 +291448,12 @@ }, { "id": 20388, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393406,17 +291461,12 @@ }, { "id": 20389, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393424,17 +291474,12 @@ }, { "id": 20390, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393442,17 +291487,12 @@ }, { "id": 20391, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393460,17 +291500,12 @@ }, { "id": 20392, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393478,17 +291513,12 @@ }, { "id": 20393, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393496,17 +291526,12 @@ }, { "id": 20394, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393525,23 +291550,18 @@ "blast_resistance": 3600000.0, "item_id": 832, "properties": [ - 1943784327 + -333467228 ], "default_state_id": 20395, "states": [ { "id": 20395, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393549,17 +291569,12 @@ }, { "id": 20396, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393567,17 +291582,12 @@ }, { "id": 20397, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393585,17 +291595,12 @@ }, { "id": 20398, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393618,16 +291623,11 @@ "states": [ { "id": 20399, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": -1.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -393686,23 +291686,18 @@ ] }, "properties": [ - -1636338833 + 2013780294 ], "default_state_id": 20400, "states": [ { "id": 20400, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393713,17 +291708,12 @@ }, { "id": 20401, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393734,17 +291724,12 @@ }, { "id": 20402, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393755,17 +291740,12 @@ }, { "id": 20403, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393776,17 +291756,12 @@ }, { "id": 20404, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393797,17 +291772,12 @@ }, { "id": 20405, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393818,17 +291788,12 @@ }, { "id": 20406, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393839,17 +291804,12 @@ }, { "id": 20407, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393860,17 +291820,12 @@ }, { "id": 20408, - "air": false, - "is_solid": true, + "state_flags": 66, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 70, 300, @@ -393913,278 +291868,198 @@ ] }, "properties": [ - 268053108 + -376795061 ], "default_state_id": 20409, "states": [ { "id": 20409, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20410, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20411, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20412, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20413, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20414, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20415, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20416, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20417, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20418, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20419, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20420, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20421, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20422, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20423, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20424, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -394251,24 +292126,19 @@ ] }, "properties": [ - -1870206692, - -388126060 + 1877134791, + -1032974229 ], "default_state_id": 20425, "states": [ { "id": 20425, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394276,17 +292146,12 @@ }, { "id": 20426, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394294,17 +292159,12 @@ }, { "id": 20427, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394312,17 +292172,12 @@ }, { "id": 20428, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394330,17 +292185,12 @@ }, { "id": 20429, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394348,17 +292198,12 @@ }, { "id": 20430, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394366,17 +292211,12 @@ }, { "id": 20431, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394384,17 +292224,12 @@ }, { "id": 20432, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394402,17 +292237,12 @@ }, { "id": 20433, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394420,17 +292250,12 @@ }, { "id": 20434, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394438,17 +292263,12 @@ }, { "id": 20435, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394456,17 +292276,12 @@ }, { "id": 20436, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394474,17 +292289,12 @@ }, { "id": 20437, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394492,17 +292302,12 @@ }, { "id": 20438, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394510,17 +292315,12 @@ }, { "id": 20439, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394528,17 +292328,12 @@ }, { "id": 20440, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394546,17 +292341,12 @@ }, { "id": 20441, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394564,17 +292354,12 @@ }, { "id": 20442, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394582,17 +292367,12 @@ }, { "id": 20443, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394600,17 +292380,12 @@ }, { "id": 20444, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394618,17 +292393,12 @@ }, { "id": 20445, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394636,17 +292406,12 @@ }, { "id": 20446, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394654,17 +292419,12 @@ }, { "id": 20447, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394672,17 +292432,12 @@ }, { "id": 20448, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394759,24 +292514,19 @@ ] }, "properties": [ - -1870206692, - -388126060 + 1877134791, + -1032974229 ], "default_state_id": 20449, "states": [ { "id": 20449, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394784,17 +292534,12 @@ }, { "id": 20450, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394802,17 +292547,12 @@ }, { "id": 20451, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394820,17 +292560,12 @@ }, { "id": 20452, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394838,17 +292573,12 @@ }, { "id": 20453, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394856,17 +292586,12 @@ }, { "id": 20454, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394874,17 +292599,12 @@ }, { "id": 20455, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394892,17 +292612,12 @@ }, { "id": 20456, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394910,17 +292625,12 @@ }, { "id": 20457, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394928,17 +292638,12 @@ }, { "id": 20458, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394946,17 +292651,12 @@ }, { "id": 20459, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394964,17 +292664,12 @@ }, { "id": 20460, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -394982,17 +292677,12 @@ }, { "id": 20461, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395000,17 +292690,12 @@ }, { "id": 20462, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395018,17 +292703,12 @@ }, { "id": 20463, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395036,17 +292716,12 @@ }, { "id": 20464, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395054,17 +292729,12 @@ }, { "id": 20465, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395072,17 +292742,12 @@ }, { "id": 20466, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395090,17 +292755,12 @@ }, { "id": 20467, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395108,17 +292768,12 @@ }, { "id": 20468, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395126,17 +292781,12 @@ }, { "id": 20469, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395144,17 +292794,12 @@ }, { "id": 20470, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395162,17 +292807,12 @@ }, { "id": 20471, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395180,17 +292820,12 @@ }, { "id": 20472, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "BASS", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -395234,16 +292869,11 @@ "states": [ { "id": 20473, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 74 ] @@ -395286,17 +292916,12 @@ "states": [ { "id": 20474, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.6, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395339,17 +292964,12 @@ "states": [ { "id": 20475, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395392,17 +293012,12 @@ "states": [ { "id": 20476, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 30.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395445,17 +293060,12 @@ "states": [ { "id": 20477, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 10, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395494,91 +293104,66 @@ ] }, "properties": [ - 1818488146 + 1173639977 ], "default_state_id": 20478, "states": [ { "id": 20478, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20479, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20480, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 7, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20481, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 11, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20482, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 50.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395636,16 +293221,11 @@ "states": [ { "id": 20483, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -395703,16 +293283,11 @@ "states": [ { "id": 20484, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -395770,16 +293345,11 @@ "states": [ { "id": 20485, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -395837,16 +293407,11 @@ "states": [ { "id": 20486, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -395889,17 +293454,12 @@ "states": [ { "id": 20487, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "BLOCK", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395942,17 +293502,12 @@ "states": [ { "id": 20488, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -395991,26 +293546,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 20500, "states": [ { "id": 20489, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -396018,17 +293568,12 @@ }, { "id": 20490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -396036,17 +293581,12 @@ }, { "id": 20491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -396055,17 +293595,12 @@ }, { "id": 20492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -396074,17 +293609,12 @@ }, { "id": 20493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -396093,17 +293623,12 @@ }, { "id": 20494, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -396112,17 +293637,12 @@ }, { "id": 20495, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -396131,17 +293651,12 @@ }, { "id": 20496, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -396150,17 +293665,12 @@ }, { "id": 20497, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -396169,17 +293679,12 @@ }, { "id": 20498, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -396188,17 +293693,12 @@ }, { "id": 20499, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -396206,17 +293706,12 @@ }, { "id": 20500, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -396224,17 +293719,12 @@ }, { "id": 20501, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -396243,17 +293733,12 @@ }, { "id": 20502, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -396262,17 +293747,12 @@ }, { "id": 20503, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -396281,17 +293761,12 @@ }, { "id": 20504, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -396300,17 +293775,12 @@ }, { "id": 20505, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -396318,17 +293788,12 @@ }, { "id": 20506, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -396336,17 +293801,12 @@ }, { "id": 20507, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -396354,17 +293814,12 @@ }, { "id": 20508, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -396372,17 +293827,12 @@ }, { "id": 20509, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -396390,17 +293840,12 @@ }, { "id": 20510, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -396408,17 +293853,12 @@ }, { "id": 20511, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -396427,17 +293867,12 @@ }, { "id": 20512, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -396446,17 +293881,12 @@ }, { "id": 20513, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -396465,17 +293895,12 @@ }, { "id": 20514, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -396484,17 +293909,12 @@ }, { "id": 20515, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -396503,17 +293923,12 @@ }, { "id": 20516, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -396522,17 +293937,12 @@ }, { "id": 20517, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -396541,17 +293951,12 @@ }, { "id": 20518, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -396560,17 +293965,12 @@ }, { "id": 20519, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -396578,17 +293978,12 @@ }, { "id": 20520, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -396596,17 +293991,12 @@ }, { "id": 20521, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -396615,17 +294005,12 @@ }, { "id": 20522, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -396634,17 +294019,12 @@ }, { "id": 20523, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -396653,17 +294033,12 @@ }, { "id": 20524, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -396672,17 +294047,12 @@ }, { "id": 20525, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -396690,17 +294060,12 @@ }, { "id": 20526, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -396708,17 +294073,12 @@ }, { "id": 20527, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -396726,17 +294086,12 @@ }, { "id": 20528, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -396744,17 +294099,12 @@ }, { "id": 20529, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -396762,17 +294112,12 @@ }, { "id": 20530, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -396780,17 +294125,12 @@ }, { "id": 20531, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -396799,17 +294139,12 @@ }, { "id": 20532, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -396818,17 +294153,12 @@ }, { "id": 20533, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -396837,17 +294167,12 @@ }, { "id": 20534, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -396856,17 +294181,12 @@ }, { "id": 20535, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -396875,17 +294195,12 @@ }, { "id": 20536, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -396894,17 +294209,12 @@ }, { "id": 20537, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -396913,17 +294223,12 @@ }, { "id": 20538, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -396932,17 +294237,12 @@ }, { "id": 20539, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -396950,17 +294250,12 @@ }, { "id": 20540, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -396968,17 +294263,12 @@ }, { "id": 20541, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -396987,17 +294277,12 @@ }, { "id": 20542, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -397006,17 +294291,12 @@ }, { "id": 20543, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -397025,17 +294305,12 @@ }, { "id": 20544, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -397044,17 +294319,12 @@ }, { "id": 20545, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -397062,17 +294332,12 @@ }, { "id": 20546, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -397080,17 +294345,12 @@ }, { "id": 20547, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -397098,17 +294358,12 @@ }, { "id": 20548, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -397116,17 +294371,12 @@ }, { "id": 20549, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -397134,17 +294384,12 @@ }, { "id": 20550, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -397152,17 +294397,12 @@ }, { "id": 20551, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -397171,17 +294411,12 @@ }, { "id": 20552, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -397190,17 +294425,12 @@ }, { "id": 20553, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -397209,17 +294439,12 @@ }, { "id": 20554, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -397228,17 +294453,12 @@ }, { "id": 20555, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -397247,17 +294467,12 @@ }, { "id": 20556, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -397266,17 +294481,12 @@ }, { "id": 20557, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -397285,17 +294495,12 @@ }, { "id": 20558, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -397304,17 +294509,12 @@ }, { "id": 20559, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -397322,17 +294522,12 @@ }, { "id": 20560, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -397340,17 +294535,12 @@ }, { "id": 20561, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -397359,17 +294549,12 @@ }, { "id": 20562, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -397378,17 +294563,12 @@ }, { "id": 20563, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -397397,17 +294577,12 @@ }, { "id": 20564, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -397416,17 +294591,12 @@ }, { "id": 20565, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -397434,17 +294604,12 @@ }, { "id": 20566, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -397452,17 +294617,12 @@ }, { "id": 20567, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -397470,17 +294630,12 @@ }, { "id": 20568, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -397520,45 +294675,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 20572, "states": [ { "id": 20569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 20570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397567,17 +294712,12 @@ }, { "id": 20571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397586,34 +294726,24 @@ }, { "id": 20572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 20573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397622,17 +294752,12 @@ }, { "id": 20574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397641,115 +294766,80 @@ }, { "id": 20575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 20577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 20578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 20580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 20581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -397757,17 +294847,12 @@ }, { "id": 20582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397777,17 +294862,12 @@ }, { "id": 20583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397797,17 +294877,12 @@ }, { "id": 20584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -397815,17 +294890,12 @@ }, { "id": 20585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397835,17 +294905,12 @@ }, { "id": 20586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397855,34 +294920,24 @@ }, { "id": 20587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 20588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -397890,17 +294945,12 @@ }, { "id": 20589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -397908,34 +294958,24 @@ }, { "id": 20590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 20591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -397943,17 +294983,12 @@ }, { "id": 20592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -397961,17 +294996,12 @@ }, { "id": 20593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -397979,17 +295009,12 @@ }, { "id": 20594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -397999,17 +295024,12 @@ }, { "id": 20595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398019,17 +295039,12 @@ }, { "id": 20596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -398037,17 +295052,12 @@ }, { "id": 20597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398057,17 +295067,12 @@ }, { "id": 20598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398077,34 +295082,24 @@ }, { "id": 20599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 20600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -398112,17 +295107,12 @@ }, { "id": 20601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -398130,34 +295120,24 @@ }, { "id": 20602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 20603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -398165,17 +295145,12 @@ }, { "id": 20604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -398183,17 +295158,12 @@ }, { "id": 20605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -398201,17 +295171,12 @@ }, { "id": 20606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398221,17 +295186,12 @@ }, { "id": 20607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398241,17 +295201,12 @@ }, { "id": 20608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -398259,17 +295214,12 @@ }, { "id": 20609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398279,17 +295229,12 @@ }, { "id": 20610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398299,34 +295244,24 @@ }, { "id": 20611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 20612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -398334,17 +295269,12 @@ }, { "id": 20613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -398352,34 +295282,24 @@ }, { "id": 20614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 20615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -398387,17 +295307,12 @@ }, { "id": 20616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -398405,17 +295320,12 @@ }, { "id": 20617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -398424,17 +295334,12 @@ }, { "id": 20618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398445,17 +295350,12 @@ }, { "id": 20619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398466,17 +295366,12 @@ }, { "id": 20620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -398485,17 +295380,12 @@ }, { "id": 20621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398506,17 +295396,12 @@ }, { "id": 20622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398527,34 +295412,24 @@ }, { "id": 20623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398563,17 +295438,12 @@ }, { "id": 20625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398582,34 +295452,24 @@ }, { "id": 20626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398618,17 +295478,12 @@ }, { "id": 20628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398637,17 +295492,12 @@ }, { "id": 20629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -398656,17 +295506,12 @@ }, { "id": 20630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398677,17 +295522,12 @@ }, { "id": 20631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398698,17 +295538,12 @@ }, { "id": 20632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -398717,17 +295552,12 @@ }, { "id": 20633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398738,17 +295568,12 @@ }, { "id": 20634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398759,34 +295584,24 @@ }, { "id": 20635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398795,17 +295610,12 @@ }, { "id": 20637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398814,34 +295624,24 @@ }, { "id": 20638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398850,17 +295650,12 @@ }, { "id": 20640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -398869,17 +295664,12 @@ }, { "id": 20641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -398887,17 +295677,12 @@ }, { "id": 20642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398907,17 +295692,12 @@ }, { "id": 20643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398927,17 +295707,12 @@ }, { "id": 20644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -398945,17 +295720,12 @@ }, { "id": 20645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398965,17 +295735,12 @@ }, { "id": 20646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -398985,34 +295750,24 @@ }, { "id": 20647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 20648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -399020,17 +295775,12 @@ }, { "id": 20649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -399038,34 +295788,24 @@ }, { "id": 20650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 20651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -399073,17 +295813,12 @@ }, { "id": 20652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -399091,17 +295826,12 @@ }, { "id": 20653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -399110,17 +295840,12 @@ }, { "id": 20654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399131,17 +295856,12 @@ }, { "id": 20655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399152,17 +295872,12 @@ }, { "id": 20656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -399171,17 +295886,12 @@ }, { "id": 20657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399192,17 +295902,12 @@ }, { "id": 20658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399213,34 +295918,24 @@ }, { "id": 20659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399249,17 +295944,12 @@ }, { "id": 20661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399268,34 +295958,24 @@ }, { "id": 20662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399304,17 +295984,12 @@ }, { "id": 20664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399323,17 +295998,12 @@ }, { "id": 20665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -399342,17 +296012,12 @@ }, { "id": 20666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399363,17 +296028,12 @@ }, { "id": 20667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399384,17 +296044,12 @@ }, { "id": 20668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -399403,17 +296058,12 @@ }, { "id": 20669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399424,17 +296074,12 @@ }, { "id": 20670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -399445,34 +296090,24 @@ }, { "id": 20671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399481,17 +296116,12 @@ }, { "id": 20673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399500,34 +296130,24 @@ }, { "id": 20674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 20675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399536,17 +296156,12 @@ }, { "id": 20676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -399555,17 +296170,12 @@ }, { "id": 20677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -399573,17 +296183,12 @@ }, { "id": 20678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399592,17 +296197,12 @@ }, { "id": 20679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399611,17 +296211,12 @@ }, { "id": 20680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -399629,17 +296224,12 @@ }, { "id": 20681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399648,17 +296238,12 @@ }, { "id": 20682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399667,119 +296252,84 @@ }, { "id": 20683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 20684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 20687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -399788,17 +296338,12 @@ }, { "id": 20690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399808,17 +296353,12 @@ }, { "id": 20691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399828,17 +296368,12 @@ }, { "id": 20692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -399847,17 +296382,12 @@ }, { "id": 20693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399867,17 +296397,12 @@ }, { "id": 20694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -399887,17 +296412,12 @@ }, { "id": 20695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -399905,17 +296425,12 @@ }, { "id": 20696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -399923,17 +296438,12 @@ }, { "id": 20697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -399941,17 +296451,12 @@ }, { "id": 20698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -399959,17 +296464,12 @@ }, { "id": 20699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -399977,17 +296477,12 @@ }, { "id": 20700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -399995,17 +296490,12 @@ }, { "id": 20701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -400014,17 +296504,12 @@ }, { "id": 20702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400034,17 +296519,12 @@ }, { "id": 20703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400054,17 +296534,12 @@ }, { "id": 20704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -400073,17 +296548,12 @@ }, { "id": 20705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400093,17 +296563,12 @@ }, { "id": 20706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400113,17 +296578,12 @@ }, { "id": 20707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -400131,17 +296591,12 @@ }, { "id": 20708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -400149,17 +296604,12 @@ }, { "id": 20709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -400167,17 +296617,12 @@ }, { "id": 20710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -400185,17 +296630,12 @@ }, { "id": 20711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -400203,17 +296643,12 @@ }, { "id": 20712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -400221,17 +296656,12 @@ }, { "id": 20713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400240,17 +296670,12 @@ }, { "id": 20714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400260,17 +296685,12 @@ }, { "id": 20715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400280,17 +296700,12 @@ }, { "id": 20716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400299,17 +296714,12 @@ }, { "id": 20717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400319,17 +296729,12 @@ }, { "id": 20718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400339,17 +296744,12 @@ }, { "id": 20719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -400357,17 +296757,12 @@ }, { "id": 20720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -400375,17 +296770,12 @@ }, { "id": 20721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -400393,17 +296783,12 @@ }, { "id": 20722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -400411,17 +296796,12 @@ }, { "id": 20723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -400429,17 +296809,12 @@ }, { "id": 20724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -400447,17 +296822,12 @@ }, { "id": 20725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400467,17 +296837,12 @@ }, { "id": 20726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400488,17 +296853,12 @@ }, { "id": 20727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400509,17 +296869,12 @@ }, { "id": 20728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400529,17 +296884,12 @@ }, { "id": 20729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400550,17 +296900,12 @@ }, { "id": 20730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400571,17 +296916,12 @@ }, { "id": 20731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -400589,17 +296929,12 @@ }, { "id": 20732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400608,17 +296943,12 @@ }, { "id": 20733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400627,17 +296957,12 @@ }, { "id": 20734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -400645,17 +296970,12 @@ }, { "id": 20735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400664,17 +296984,12 @@ }, { "id": 20736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400683,17 +296998,12 @@ }, { "id": 20737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400703,17 +297013,12 @@ }, { "id": 20738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400724,17 +297029,12 @@ }, { "id": 20739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400745,17 +297045,12 @@ }, { "id": 20740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400765,17 +297060,12 @@ }, { "id": 20741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400786,17 +297076,12 @@ }, { "id": 20742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400807,17 +297092,12 @@ }, { "id": 20743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -400825,17 +297105,12 @@ }, { "id": 20744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400844,17 +297119,12 @@ }, { "id": 20745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400863,17 +297133,12 @@ }, { "id": 20746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -400881,17 +297146,12 @@ }, { "id": 20747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400900,17 +297160,12 @@ }, { "id": 20748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -400919,17 +297174,12 @@ }, { "id": 20749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400938,17 +297188,12 @@ }, { "id": 20750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400958,17 +297203,12 @@ }, { "id": 20751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -400978,17 +297218,12 @@ }, { "id": 20752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -400997,17 +297232,12 @@ }, { "id": 20753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401017,17 +297247,12 @@ }, { "id": 20754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401037,17 +297262,12 @@ }, { "id": 20755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -401055,17 +297275,12 @@ }, { "id": 20756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -401073,17 +297288,12 @@ }, { "id": 20757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -401091,17 +297301,12 @@ }, { "id": 20758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -401109,17 +297314,12 @@ }, { "id": 20759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -401127,17 +297327,12 @@ }, { "id": 20760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -401145,17 +297340,12 @@ }, { "id": 20761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -401165,17 +297355,12 @@ }, { "id": 20762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401186,17 +297371,12 @@ }, { "id": 20763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401207,17 +297387,12 @@ }, { "id": 20764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -401227,17 +297402,12 @@ }, { "id": 20765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401248,17 +297418,12 @@ }, { "id": 20766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401269,17 +297434,12 @@ }, { "id": 20767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -401287,17 +297447,12 @@ }, { "id": 20768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401306,17 +297461,12 @@ }, { "id": 20769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401325,17 +297475,12 @@ }, { "id": 20770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -401343,17 +297488,12 @@ }, { "id": 20771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401362,17 +297502,12 @@ }, { "id": 20772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401381,17 +297516,12 @@ }, { "id": 20773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -401401,17 +297531,12 @@ }, { "id": 20774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401422,17 +297547,12 @@ }, { "id": 20775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401443,17 +297563,12 @@ }, { "id": 20776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -401463,17 +297578,12 @@ }, { "id": 20777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401484,17 +297594,12 @@ }, { "id": 20778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401505,17 +297610,12 @@ }, { "id": 20779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -401523,17 +297623,12 @@ }, { "id": 20780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401542,17 +297637,12 @@ }, { "id": 20781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401561,17 +297651,12 @@ }, { "id": 20782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -401579,17 +297664,12 @@ }, { "id": 20783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401598,17 +297678,12 @@ }, { "id": 20784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -401617,17 +297692,12 @@ }, { "id": 20785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -401635,17 +297705,12 @@ }, { "id": 20786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401654,17 +297719,12 @@ }, { "id": 20787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401673,17 +297733,12 @@ }, { "id": 20788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -401691,17 +297746,12 @@ }, { "id": 20789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401710,17 +297760,12 @@ }, { "id": 20790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401729,119 +297774,84 @@ }, { "id": 20791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 20792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 20795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 20797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -401850,17 +297860,12 @@ }, { "id": 20798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401870,17 +297875,12 @@ }, { "id": 20799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401890,17 +297890,12 @@ }, { "id": 20800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -401909,17 +297904,12 @@ }, { "id": 20801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401929,17 +297919,12 @@ }, { "id": 20802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -401949,17 +297934,12 @@ }, { "id": 20803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -401967,17 +297947,12 @@ }, { "id": 20804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -401985,17 +297960,12 @@ }, { "id": 20805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402003,17 +297973,12 @@ }, { "id": 20806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -402021,17 +297986,12 @@ }, { "id": 20807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402039,17 +297999,12 @@ }, { "id": 20808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402057,17 +298012,12 @@ }, { "id": 20809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -402076,17 +298026,12 @@ }, { "id": 20810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402096,17 +298041,12 @@ }, { "id": 20811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402116,17 +298056,12 @@ }, { "id": 20812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -402135,17 +298070,12 @@ }, { "id": 20813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402155,17 +298085,12 @@ }, { "id": 20814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402175,17 +298100,12 @@ }, { "id": 20815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -402193,17 +298113,12 @@ }, { "id": 20816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402211,17 +298126,12 @@ }, { "id": 20817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402229,17 +298139,12 @@ }, { "id": 20818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -402247,17 +298152,12 @@ }, { "id": 20819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402265,17 +298165,12 @@ }, { "id": 20820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -402283,17 +298178,12 @@ }, { "id": 20821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -402302,17 +298192,12 @@ }, { "id": 20822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402322,17 +298207,12 @@ }, { "id": 20823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402342,17 +298222,12 @@ }, { "id": 20824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -402361,17 +298236,12 @@ }, { "id": 20825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402381,17 +298251,12 @@ }, { "id": 20826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402401,17 +298266,12 @@ }, { "id": 20827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -402419,17 +298279,12 @@ }, { "id": 20828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -402437,17 +298292,12 @@ }, { "id": 20829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -402455,17 +298305,12 @@ }, { "id": 20830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -402473,17 +298318,12 @@ }, { "id": 20831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -402491,17 +298331,12 @@ }, { "id": 20832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -402509,17 +298344,12 @@ }, { "id": 20833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -402529,17 +298359,12 @@ }, { "id": 20834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402550,17 +298375,12 @@ }, { "id": 20835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402571,17 +298391,12 @@ }, { "id": 20836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -402591,17 +298406,12 @@ }, { "id": 20837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402612,17 +298422,12 @@ }, { "id": 20838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402633,17 +298438,12 @@ }, { "id": 20839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -402651,17 +298451,12 @@ }, { "id": 20840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402670,17 +298465,12 @@ }, { "id": 20841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402689,17 +298479,12 @@ }, { "id": 20842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -402707,17 +298492,12 @@ }, { "id": 20843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402726,17 +298506,12 @@ }, { "id": 20844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402745,17 +298520,12 @@ }, { "id": 20845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -402765,17 +298535,12 @@ }, { "id": 20846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402786,17 +298551,12 @@ }, { "id": 20847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402807,17 +298567,12 @@ }, { "id": 20848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -402827,17 +298582,12 @@ }, { "id": 20849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402848,17 +298598,12 @@ }, { "id": 20850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -402869,17 +298614,12 @@ }, { "id": 20851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -402887,17 +298627,12 @@ }, { "id": 20852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402906,17 +298641,12 @@ }, { "id": 20853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402925,17 +298655,12 @@ }, { "id": 20854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -402943,17 +298668,12 @@ }, { "id": 20855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402962,17 +298682,12 @@ }, { "id": 20856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -402981,17 +298696,12 @@ }, { "id": 20857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -403000,17 +298710,12 @@ }, { "id": 20858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403020,17 +298725,12 @@ }, { "id": 20859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403040,17 +298740,12 @@ }, { "id": 20860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -403059,17 +298754,12 @@ }, { "id": 20861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403079,17 +298769,12 @@ }, { "id": 20862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403099,17 +298784,12 @@ }, { "id": 20863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -403117,17 +298797,12 @@ }, { "id": 20864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -403135,17 +298810,12 @@ }, { "id": 20865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -403153,17 +298823,12 @@ }, { "id": 20866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -403171,17 +298836,12 @@ }, { "id": 20867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -403189,17 +298849,12 @@ }, { "id": 20868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -403207,17 +298862,12 @@ }, { "id": 20869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -403227,17 +298877,12 @@ }, { "id": 20870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403248,17 +298893,12 @@ }, { "id": 20871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403269,17 +298909,12 @@ }, { "id": 20872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -403289,17 +298924,12 @@ }, { "id": 20873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403310,17 +298940,12 @@ }, { "id": 20874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403331,17 +298956,12 @@ }, { "id": 20875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -403349,17 +298969,12 @@ }, { "id": 20876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403368,17 +298983,12 @@ }, { "id": 20877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403387,17 +298997,12 @@ }, { "id": 20878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -403405,17 +299010,12 @@ }, { "id": 20879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403424,17 +299024,12 @@ }, { "id": 20880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403443,17 +299038,12 @@ }, { "id": 20881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -403463,17 +299053,12 @@ }, { "id": 20882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403484,17 +299069,12 @@ }, { "id": 20883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403505,17 +299085,12 @@ }, { "id": 20884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -403525,17 +299100,12 @@ }, { "id": 20885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403546,17 +299116,12 @@ }, { "id": 20886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -403567,17 +299132,12 @@ }, { "id": 20887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -403585,17 +299145,12 @@ }, { "id": 20888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403604,17 +299159,12 @@ }, { "id": 20889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403623,17 +299173,12 @@ }, { "id": 20890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -403641,17 +299186,12 @@ }, { "id": 20891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403660,17 +299200,12 @@ }, { "id": 20892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -403725,109 +299260,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 20896, "states": [ { "id": 20893, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 20894, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 20895, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 20896, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 20897, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20898, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -403870,17 +299375,12 @@ "states": [ { "id": 20899, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -403923,17 +299423,12 @@ "states": [ { "id": 20900, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -403976,17 +299471,12 @@ "states": [ { "id": 20901, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -404029,17 +299519,12 @@ "states": [ { "id": 20902, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -404092,109 +299577,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 20906, "states": [ { "id": 20903, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 20904, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 20905, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 20906, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 20907, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 20908, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -404233,26 +299688,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 20920, "states": [ { "id": 20909, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -404260,17 +299710,12 @@ }, { "id": 20910, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -404278,17 +299723,12 @@ }, { "id": 20911, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -404297,17 +299737,12 @@ }, { "id": 20912, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -404316,17 +299751,12 @@ }, { "id": 20913, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -404335,17 +299765,12 @@ }, { "id": 20914, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -404354,17 +299779,12 @@ }, { "id": 20915, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -404373,17 +299793,12 @@ }, { "id": 20916, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -404392,17 +299807,12 @@ }, { "id": 20917, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -404411,17 +299821,12 @@ }, { "id": 20918, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -404430,17 +299835,12 @@ }, { "id": 20919, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -404448,17 +299848,12 @@ }, { "id": 20920, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -404466,17 +299861,12 @@ }, { "id": 20921, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -404485,17 +299875,12 @@ }, { "id": 20922, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -404504,17 +299889,12 @@ }, { "id": 20923, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -404523,17 +299903,12 @@ }, { "id": 20924, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -404542,17 +299917,12 @@ }, { "id": 20925, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -404560,17 +299930,12 @@ }, { "id": 20926, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -404578,17 +299943,12 @@ }, { "id": 20927, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -404596,17 +299956,12 @@ }, { "id": 20928, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -404614,17 +299969,12 @@ }, { "id": 20929, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -404632,17 +299982,12 @@ }, { "id": 20930, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -404650,17 +299995,12 @@ }, { "id": 20931, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -404669,17 +300009,12 @@ }, { "id": 20932, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -404688,17 +300023,12 @@ }, { "id": 20933, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -404707,17 +300037,12 @@ }, { "id": 20934, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -404726,17 +300051,12 @@ }, { "id": 20935, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -404745,17 +300065,12 @@ }, { "id": 20936, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -404764,17 +300079,12 @@ }, { "id": 20937, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -404783,17 +300093,12 @@ }, { "id": 20938, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -404802,17 +300107,12 @@ }, { "id": 20939, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -404820,17 +300120,12 @@ }, { "id": 20940, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -404838,17 +300133,12 @@ }, { "id": 20941, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -404857,17 +300147,12 @@ }, { "id": 20942, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -404876,17 +300161,12 @@ }, { "id": 20943, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -404895,17 +300175,12 @@ }, { "id": 20944, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -404914,17 +300189,12 @@ }, { "id": 20945, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -404932,17 +300202,12 @@ }, { "id": 20946, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -404950,17 +300215,12 @@ }, { "id": 20947, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -404968,17 +300228,12 @@ }, { "id": 20948, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -404986,17 +300241,12 @@ }, { "id": 20949, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -405004,17 +300254,12 @@ }, { "id": 20950, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -405022,17 +300267,12 @@ }, { "id": 20951, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -405041,17 +300281,12 @@ }, { "id": 20952, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -405060,17 +300295,12 @@ }, { "id": 20953, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -405079,17 +300309,12 @@ }, { "id": 20954, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -405098,17 +300323,12 @@ }, { "id": 20955, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -405117,17 +300337,12 @@ }, { "id": 20956, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -405136,17 +300351,12 @@ }, { "id": 20957, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -405155,17 +300365,12 @@ }, { "id": 20958, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -405174,17 +300379,12 @@ }, { "id": 20959, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -405192,17 +300392,12 @@ }, { "id": 20960, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -405210,17 +300405,12 @@ }, { "id": 20961, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -405229,17 +300419,12 @@ }, { "id": 20962, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -405248,17 +300433,12 @@ }, { "id": 20963, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -405267,17 +300447,12 @@ }, { "id": 20964, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -405286,17 +300461,12 @@ }, { "id": 20965, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -405304,17 +300474,12 @@ }, { "id": 20966, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -405322,17 +300487,12 @@ }, { "id": 20967, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -405340,17 +300500,12 @@ }, { "id": 20968, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -405358,17 +300513,12 @@ }, { "id": 20969, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -405376,17 +300526,12 @@ }, { "id": 20970, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -405394,17 +300539,12 @@ }, { "id": 20971, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -405413,17 +300553,12 @@ }, { "id": 20972, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -405432,17 +300567,12 @@ }, { "id": 20973, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -405451,17 +300581,12 @@ }, { "id": 20974, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -405470,17 +300595,12 @@ }, { "id": 20975, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -405489,17 +300609,12 @@ }, { "id": 20976, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -405508,17 +300623,12 @@ }, { "id": 20977, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -405527,17 +300637,12 @@ }, { "id": 20978, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -405546,17 +300651,12 @@ }, { "id": 20979, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -405564,17 +300664,12 @@ }, { "id": 20980, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -405582,17 +300677,12 @@ }, { "id": 20981, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -405601,17 +300691,12 @@ }, { "id": 20982, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -405620,17 +300705,12 @@ }, { "id": 20983, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -405639,17 +300719,12 @@ }, { "id": 20984, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -405658,17 +300733,12 @@ }, { "id": 20985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -405676,17 +300746,12 @@ }, { "id": 20986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -405694,17 +300759,12 @@ }, { "id": 20987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -405712,17 +300772,12 @@ }, { "id": 20988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -405762,45 +300817,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 20992, "states": [ { "id": 20989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 20990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -405809,17 +300854,12 @@ }, { "id": 20991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -405828,34 +300868,24 @@ }, { "id": 20992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 20993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -405864,17 +300894,12 @@ }, { "id": 20994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -405883,115 +300908,80 @@ }, { "id": 20995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 20997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 20998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 20999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 21000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 21001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -405999,17 +300989,12 @@ }, { "id": 21002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406019,17 +301004,12 @@ }, { "id": 21003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406039,17 +301019,12 @@ }, { "id": 21004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -406057,17 +301032,12 @@ }, { "id": 21005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406077,17 +301047,12 @@ }, { "id": 21006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406097,34 +301062,24 @@ }, { "id": 21007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406132,17 +301087,12 @@ }, { "id": 21009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406150,34 +301100,24 @@ }, { "id": 21010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406185,17 +301125,12 @@ }, { "id": 21012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406203,17 +301138,12 @@ }, { "id": 21013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -406221,17 +301151,12 @@ }, { "id": 21014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406241,17 +301166,12 @@ }, { "id": 21015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406261,17 +301181,12 @@ }, { "id": 21016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -406279,17 +301194,12 @@ }, { "id": 21017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406299,17 +301209,12 @@ }, { "id": 21018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406319,34 +301224,24 @@ }, { "id": 21019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406354,17 +301249,12 @@ }, { "id": 21021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406372,34 +301262,24 @@ }, { "id": 21022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406407,17 +301287,12 @@ }, { "id": 21024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -406425,17 +301300,12 @@ }, { "id": 21025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -406443,17 +301313,12 @@ }, { "id": 21026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406463,17 +301328,12 @@ }, { "id": 21027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406483,17 +301343,12 @@ }, { "id": 21028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -406501,17 +301356,12 @@ }, { "id": 21029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406521,17 +301371,12 @@ }, { "id": 21030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406541,34 +301386,24 @@ }, { "id": 21031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -406576,17 +301411,12 @@ }, { "id": 21033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -406594,34 +301424,24 @@ }, { "id": 21034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -406629,17 +301449,12 @@ }, { "id": 21036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -406647,17 +301462,12 @@ }, { "id": 21037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -406666,17 +301476,12 @@ }, { "id": 21038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406687,17 +301492,12 @@ }, { "id": 21039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406708,17 +301508,12 @@ }, { "id": 21040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -406727,17 +301522,12 @@ }, { "id": 21041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406748,17 +301538,12 @@ }, { "id": 21042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406769,34 +301554,24 @@ }, { "id": 21043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -406805,17 +301580,12 @@ }, { "id": 21045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -406824,34 +301594,24 @@ }, { "id": 21046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -406860,17 +301620,12 @@ }, { "id": 21048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -406879,17 +301634,12 @@ }, { "id": 21049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -406898,17 +301648,12 @@ }, { "id": 21050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406919,17 +301664,12 @@ }, { "id": 21051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406940,17 +301680,12 @@ }, { "id": 21052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -406959,17 +301694,12 @@ }, { "id": 21053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -406980,17 +301710,12 @@ }, { "id": 21054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407001,34 +301726,24 @@ }, { "id": 21055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407037,17 +301752,12 @@ }, { "id": 21057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407056,34 +301766,24 @@ }, { "id": 21058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407092,17 +301792,12 @@ }, { "id": 21060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407111,17 +301806,12 @@ }, { "id": 21061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -407129,17 +301819,12 @@ }, { "id": 21062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407149,17 +301834,12 @@ }, { "id": 21063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407169,17 +301849,12 @@ }, { "id": 21064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -407187,17 +301862,12 @@ }, { "id": 21065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407207,17 +301877,12 @@ }, { "id": 21066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407227,34 +301892,24 @@ }, { "id": 21067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -407262,17 +301917,12 @@ }, { "id": 21069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -407280,34 +301930,24 @@ }, { "id": 21070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -407315,17 +301955,12 @@ }, { "id": 21072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -407333,17 +301968,12 @@ }, { "id": 21073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -407352,17 +301982,12 @@ }, { "id": 21074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407373,17 +301998,12 @@ }, { "id": 21075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407394,17 +302014,12 @@ }, { "id": 21076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -407413,17 +302028,12 @@ }, { "id": 21077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407434,17 +302044,12 @@ }, { "id": 21078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407455,34 +302060,24 @@ }, { "id": 21079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407491,17 +302086,12 @@ }, { "id": 21081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407510,34 +302100,24 @@ }, { "id": 21082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407546,17 +302126,12 @@ }, { "id": 21084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407565,17 +302140,12 @@ }, { "id": 21085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -407584,17 +302154,12 @@ }, { "id": 21086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407605,17 +302170,12 @@ }, { "id": 21087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407626,17 +302186,12 @@ }, { "id": 21088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -407645,17 +302200,12 @@ }, { "id": 21089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407666,17 +302216,12 @@ }, { "id": 21090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -407687,34 +302232,24 @@ }, { "id": 21091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407723,17 +302258,12 @@ }, { "id": 21093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407742,34 +302272,24 @@ }, { "id": 21094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407778,17 +302298,12 @@ }, { "id": 21096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -407797,17 +302312,12 @@ }, { "id": 21097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -407815,17 +302325,12 @@ }, { "id": 21098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -407834,17 +302339,12 @@ }, { "id": 21099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -407853,17 +302353,12 @@ }, { "id": 21100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -407871,17 +302366,12 @@ }, { "id": 21101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -407890,17 +302380,12 @@ }, { "id": 21102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -407909,119 +302394,84 @@ }, { "id": 21103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -408030,17 +302480,12 @@ }, { "id": 21110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408050,17 +302495,12 @@ }, { "id": 21111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408070,17 +302510,12 @@ }, { "id": 21112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -408089,17 +302524,12 @@ }, { "id": 21113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408109,17 +302539,12 @@ }, { "id": 21114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408129,17 +302554,12 @@ }, { "id": 21115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -408147,17 +302567,12 @@ }, { "id": 21116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408165,17 +302580,12 @@ }, { "id": 21117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408183,17 +302593,12 @@ }, { "id": 21118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -408201,17 +302606,12 @@ }, { "id": 21119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408219,17 +302619,12 @@ }, { "id": 21120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408237,17 +302632,12 @@ }, { "id": 21121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -408256,17 +302646,12 @@ }, { "id": 21122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408276,17 +302661,12 @@ }, { "id": 21123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408296,17 +302676,12 @@ }, { "id": 21124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -408315,17 +302690,12 @@ }, { "id": 21125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408335,17 +302705,12 @@ }, { "id": 21126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408355,17 +302720,12 @@ }, { "id": 21127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -408373,17 +302733,12 @@ }, { "id": 21128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408391,17 +302746,12 @@ }, { "id": 21129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408409,17 +302759,12 @@ }, { "id": 21130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -408427,17 +302772,12 @@ }, { "id": 21131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408445,17 +302785,12 @@ }, { "id": 21132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -408463,17 +302798,12 @@ }, { "id": 21133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -408482,17 +302812,12 @@ }, { "id": 21134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408502,17 +302827,12 @@ }, { "id": 21135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408522,17 +302842,12 @@ }, { "id": 21136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -408541,17 +302856,12 @@ }, { "id": 21137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408561,17 +302871,12 @@ }, { "id": 21138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408581,17 +302886,12 @@ }, { "id": 21139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -408599,17 +302899,12 @@ }, { "id": 21140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -408617,17 +302912,12 @@ }, { "id": 21141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -408635,17 +302925,12 @@ }, { "id": 21142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -408653,17 +302938,12 @@ }, { "id": 21143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -408671,17 +302951,12 @@ }, { "id": 21144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -408689,17 +302964,12 @@ }, { "id": 21145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -408709,17 +302979,12 @@ }, { "id": 21146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408730,17 +302995,12 @@ }, { "id": 21147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408751,17 +303011,12 @@ }, { "id": 21148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -408771,17 +303026,12 @@ }, { "id": 21149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408792,17 +303042,12 @@ }, { "id": 21150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408813,17 +303058,12 @@ }, { "id": 21151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -408831,17 +303071,12 @@ }, { "id": 21152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -408850,17 +303085,12 @@ }, { "id": 21153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -408869,17 +303099,12 @@ }, { "id": 21154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -408887,17 +303112,12 @@ }, { "id": 21155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -408906,17 +303126,12 @@ }, { "id": 21156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -408925,17 +303140,12 @@ }, { "id": 21157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -408945,17 +303155,12 @@ }, { "id": 21158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408966,17 +303171,12 @@ }, { "id": 21159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -408987,17 +303187,12 @@ }, { "id": 21160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409007,17 +303202,12 @@ }, { "id": 21161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409028,17 +303218,12 @@ }, { "id": 21162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409049,17 +303234,12 @@ }, { "id": 21163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -409067,17 +303247,12 @@ }, { "id": 21164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409086,17 +303261,12 @@ }, { "id": 21165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409105,17 +303275,12 @@ }, { "id": 21166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -409123,17 +303288,12 @@ }, { "id": 21167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409142,17 +303302,12 @@ }, { "id": 21168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409161,17 +303316,12 @@ }, { "id": 21169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409180,17 +303330,12 @@ }, { "id": 21170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409200,17 +303345,12 @@ }, { "id": 21171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409220,17 +303360,12 @@ }, { "id": 21172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409239,17 +303374,12 @@ }, { "id": 21173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409259,17 +303389,12 @@ }, { "id": 21174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409279,17 +303404,12 @@ }, { "id": 21175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -409297,17 +303417,12 @@ }, { "id": 21176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -409315,17 +303430,12 @@ }, { "id": 21177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -409333,17 +303443,12 @@ }, { "id": 21178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -409351,17 +303456,12 @@ }, { "id": 21179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -409369,17 +303469,12 @@ }, { "id": 21180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -409387,17 +303482,12 @@ }, { "id": 21181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409407,17 +303497,12 @@ }, { "id": 21182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409428,17 +303513,12 @@ }, { "id": 21183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409449,17 +303529,12 @@ }, { "id": 21184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409469,17 +303544,12 @@ }, { "id": 21185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409490,17 +303560,12 @@ }, { "id": 21186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409511,17 +303576,12 @@ }, { "id": 21187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -409529,17 +303589,12 @@ }, { "id": 21188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409548,17 +303603,12 @@ }, { "id": 21189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409567,17 +303617,12 @@ }, { "id": 21190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -409585,17 +303630,12 @@ }, { "id": 21191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409604,17 +303644,12 @@ }, { "id": 21192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409623,17 +303658,12 @@ }, { "id": 21193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409643,17 +303673,12 @@ }, { "id": 21194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409664,17 +303689,12 @@ }, { "id": 21195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409685,17 +303705,12 @@ }, { "id": 21196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -409705,17 +303720,12 @@ }, { "id": 21197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409726,17 +303736,12 @@ }, { "id": 21198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409747,17 +303752,12 @@ }, { "id": 21199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -409765,17 +303765,12 @@ }, { "id": 21200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409784,17 +303779,12 @@ }, { "id": 21201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409803,17 +303793,12 @@ }, { "id": 21202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -409821,17 +303806,12 @@ }, { "id": 21203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409840,17 +303820,12 @@ }, { "id": 21204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -409859,17 +303834,12 @@ }, { "id": 21205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -409877,17 +303847,12 @@ }, { "id": 21206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409896,17 +303861,12 @@ }, { "id": 21207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409915,17 +303875,12 @@ }, { "id": 21208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -409933,17 +303888,12 @@ }, { "id": 21209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409952,17 +303902,12 @@ }, { "id": 21210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -409971,119 +303916,84 @@ }, { "id": 21211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -410092,17 +304002,12 @@ }, { "id": 21218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410112,17 +304017,12 @@ }, { "id": 21219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410132,17 +304032,12 @@ }, { "id": 21220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -410151,17 +304046,12 @@ }, { "id": 21221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410171,17 +304061,12 @@ }, { "id": 21222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410191,17 +304076,12 @@ }, { "id": 21223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -410209,17 +304089,12 @@ }, { "id": 21224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410227,17 +304102,12 @@ }, { "id": 21225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410245,17 +304115,12 @@ }, { "id": 21226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -410263,17 +304128,12 @@ }, { "id": 21227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410281,17 +304141,12 @@ }, { "id": 21228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410299,17 +304154,12 @@ }, { "id": 21229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -410318,17 +304168,12 @@ }, { "id": 21230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410338,17 +304183,12 @@ }, { "id": 21231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410358,17 +304198,12 @@ }, { "id": 21232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -410377,17 +304212,12 @@ }, { "id": 21233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410397,17 +304227,12 @@ }, { "id": 21234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410417,17 +304242,12 @@ }, { "id": 21235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -410435,17 +304255,12 @@ }, { "id": 21236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410453,17 +304268,12 @@ }, { "id": 21237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410471,17 +304281,12 @@ }, { "id": 21238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -410489,17 +304294,12 @@ }, { "id": 21239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410507,17 +304307,12 @@ }, { "id": 21240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -410525,17 +304320,12 @@ }, { "id": 21241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -410544,17 +304334,12 @@ }, { "id": 21242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410564,17 +304349,12 @@ }, { "id": 21243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410584,17 +304364,12 @@ }, { "id": 21244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -410603,17 +304378,12 @@ }, { "id": 21245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410623,17 +304393,12 @@ }, { "id": 21246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410643,17 +304408,12 @@ }, { "id": 21247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -410661,17 +304421,12 @@ }, { "id": 21248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -410679,17 +304434,12 @@ }, { "id": 21249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -410697,17 +304447,12 @@ }, { "id": 21250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -410715,17 +304460,12 @@ }, { "id": 21251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -410733,17 +304473,12 @@ }, { "id": 21252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -410751,17 +304486,12 @@ }, { "id": 21253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -410771,17 +304501,12 @@ }, { "id": 21254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410792,17 +304517,12 @@ }, { "id": 21255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410813,17 +304533,12 @@ }, { "id": 21256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -410833,17 +304548,12 @@ }, { "id": 21257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410854,17 +304564,12 @@ }, { "id": 21258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -410875,17 +304580,12 @@ }, { "id": 21259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -410893,17 +304593,12 @@ }, { "id": 21260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -410912,17 +304607,12 @@ }, { "id": 21261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -410931,17 +304621,12 @@ }, { "id": 21262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -410949,17 +304634,12 @@ }, { "id": 21263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -410968,17 +304648,12 @@ }, { "id": 21264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -410987,17 +304662,12 @@ }, { "id": 21265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411007,17 +304677,12 @@ }, { "id": 21266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411028,17 +304693,12 @@ }, { "id": 21267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411049,17 +304709,12 @@ }, { "id": 21268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411069,17 +304724,12 @@ }, { "id": 21269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411090,17 +304740,12 @@ }, { "id": 21270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411111,17 +304756,12 @@ }, { "id": 21271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -411129,17 +304769,12 @@ }, { "id": 21272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411148,17 +304783,12 @@ }, { "id": 21273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411167,17 +304797,12 @@ }, { "id": 21274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -411185,17 +304810,12 @@ }, { "id": 21275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411204,17 +304824,12 @@ }, { "id": 21276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411223,17 +304838,12 @@ }, { "id": 21277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411242,17 +304852,12 @@ }, { "id": 21278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411262,17 +304867,12 @@ }, { "id": 21279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411282,17 +304882,12 @@ }, { "id": 21280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411301,17 +304896,12 @@ }, { "id": 21281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411321,17 +304911,12 @@ }, { "id": 21282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411341,17 +304926,12 @@ }, { "id": 21283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -411359,17 +304939,12 @@ }, { "id": 21284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -411377,17 +304952,12 @@ }, { "id": 21285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -411395,17 +304965,12 @@ }, { "id": 21286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -411413,17 +304978,12 @@ }, { "id": 21287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -411431,17 +304991,12 @@ }, { "id": 21288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -411449,17 +305004,12 @@ }, { "id": 21289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411469,17 +305019,12 @@ }, { "id": 21290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411490,17 +305035,12 @@ }, { "id": 21291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411511,17 +305051,12 @@ }, { "id": 21292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411531,17 +305066,12 @@ }, { "id": 21293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411552,17 +305082,12 @@ }, { "id": 21294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411573,17 +305098,12 @@ }, { "id": 21295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -411591,17 +305111,12 @@ }, { "id": 21296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411610,17 +305125,12 @@ }, { "id": 21297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411629,17 +305139,12 @@ }, { "id": 21298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -411647,17 +305152,12 @@ }, { "id": 21299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411666,17 +305166,12 @@ }, { "id": 21300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411685,17 +305180,12 @@ }, { "id": 21301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411705,17 +305195,12 @@ }, { "id": 21302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411726,17 +305211,12 @@ }, { "id": 21303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411747,17 +305227,12 @@ }, { "id": 21304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -411767,17 +305242,12 @@ }, { "id": 21305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411788,17 +305258,12 @@ }, { "id": 21306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -411809,17 +305274,12 @@ }, { "id": 21307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -411827,17 +305287,12 @@ }, { "id": 21308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411846,17 +305301,12 @@ }, { "id": 21309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411865,17 +305315,12 @@ }, { "id": 21310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -411883,17 +305328,12 @@ }, { "id": 21311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -411902,17 +305342,12 @@ }, { "id": 21312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -412015,17 +305450,12 @@ "states": [ { "id": 21313, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -412064,26 +305494,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 21325, "states": [ { "id": 21314, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -412091,17 +305516,12 @@ }, { "id": 21315, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -412109,17 +305529,12 @@ }, { "id": 21316, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -412128,17 +305543,12 @@ }, { "id": 21317, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -412147,17 +305557,12 @@ }, { "id": 21318, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -412166,17 +305571,12 @@ }, { "id": 21319, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -412185,17 +305585,12 @@ }, { "id": 21320, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -412204,17 +305599,12 @@ }, { "id": 21321, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -412223,17 +305613,12 @@ }, { "id": 21322, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -412242,17 +305627,12 @@ }, { "id": 21323, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -412261,17 +305641,12 @@ }, { "id": 21324, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -412279,17 +305654,12 @@ }, { "id": 21325, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -412297,17 +305667,12 @@ }, { "id": 21326, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -412316,17 +305681,12 @@ }, { "id": 21327, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -412335,17 +305695,12 @@ }, { "id": 21328, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -412354,17 +305709,12 @@ }, { "id": 21329, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -412373,17 +305723,12 @@ }, { "id": 21330, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -412391,17 +305736,12 @@ }, { "id": 21331, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -412409,17 +305749,12 @@ }, { "id": 21332, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -412427,17 +305762,12 @@ }, { "id": 21333, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -412445,17 +305775,12 @@ }, { "id": 21334, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -412463,17 +305788,12 @@ }, { "id": 21335, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -412481,17 +305801,12 @@ }, { "id": 21336, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -412500,17 +305815,12 @@ }, { "id": 21337, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -412519,17 +305829,12 @@ }, { "id": 21338, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -412538,17 +305843,12 @@ }, { "id": 21339, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -412557,17 +305857,12 @@ }, { "id": 21340, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -412576,17 +305871,12 @@ }, { "id": 21341, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -412595,17 +305885,12 @@ }, { "id": 21342, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -412614,17 +305899,12 @@ }, { "id": 21343, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -412633,17 +305913,12 @@ }, { "id": 21344, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -412651,17 +305926,12 @@ }, { "id": 21345, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -412669,17 +305939,12 @@ }, { "id": 21346, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -412688,17 +305953,12 @@ }, { "id": 21347, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -412707,17 +305967,12 @@ }, { "id": 21348, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -412726,17 +305981,12 @@ }, { "id": 21349, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -412745,17 +305995,12 @@ }, { "id": 21350, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -412763,17 +306008,12 @@ }, { "id": 21351, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -412781,17 +306021,12 @@ }, { "id": 21352, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -412799,17 +306034,12 @@ }, { "id": 21353, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -412817,17 +306047,12 @@ }, { "id": 21354, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -412835,17 +306060,12 @@ }, { "id": 21355, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -412853,17 +306073,12 @@ }, { "id": 21356, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -412872,17 +306087,12 @@ }, { "id": 21357, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -412891,17 +306101,12 @@ }, { "id": 21358, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -412910,17 +306115,12 @@ }, { "id": 21359, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -412929,17 +306129,12 @@ }, { "id": 21360, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -412948,17 +306143,12 @@ }, { "id": 21361, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -412967,17 +306157,12 @@ }, { "id": 21362, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -412986,17 +306171,12 @@ }, { "id": 21363, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -413005,17 +306185,12 @@ }, { "id": 21364, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -413023,17 +306198,12 @@ }, { "id": 21365, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -413041,17 +306211,12 @@ }, { "id": 21366, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -413060,17 +306225,12 @@ }, { "id": 21367, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -413079,17 +306239,12 @@ }, { "id": 21368, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -413098,17 +306253,12 @@ }, { "id": 21369, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -413117,17 +306267,12 @@ }, { "id": 21370, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -413135,17 +306280,12 @@ }, { "id": 21371, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -413153,17 +306293,12 @@ }, { "id": 21372, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -413171,17 +306306,12 @@ }, { "id": 21373, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -413189,17 +306319,12 @@ }, { "id": 21374, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -413207,17 +306332,12 @@ }, { "id": 21375, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -413225,17 +306345,12 @@ }, { "id": 21376, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -413244,17 +306359,12 @@ }, { "id": 21377, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -413263,17 +306373,12 @@ }, { "id": 21378, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -413282,17 +306387,12 @@ }, { "id": 21379, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -413301,17 +306401,12 @@ }, { "id": 21380, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -413320,17 +306415,12 @@ }, { "id": 21381, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -413339,17 +306429,12 @@ }, { "id": 21382, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -413358,17 +306443,12 @@ }, { "id": 21383, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -413377,17 +306457,12 @@ }, { "id": 21384, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -413395,17 +306470,12 @@ }, { "id": 21385, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -413413,17 +306483,12 @@ }, { "id": 21386, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -413432,17 +306497,12 @@ }, { "id": 21387, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -413451,17 +306511,12 @@ }, { "id": 21388, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -413470,17 +306525,12 @@ }, { "id": 21389, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -413489,17 +306539,12 @@ }, { "id": 21390, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -413507,17 +306552,12 @@ }, { "id": 21391, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -413525,17 +306565,12 @@ }, { "id": 21392, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -413543,17 +306578,12 @@ }, { "id": 21393, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -413607,109 +306637,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 21397, "states": [ { "id": 21394, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 21395, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 21396, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 21397, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 21398, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 21399, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -413748,36 +306748,26 @@ ] }, "properties": [ - -634074493 + -440650606 ], "default_state_id": 21401, "states": [ { "id": 21400, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21401, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -413814,346 +306804,226 @@ ] }, "properties": [ - 882382600, - -1870206692, - -634074493 + -1094626518, + 1877134791, + -440650606 ], "default_state_id": 21411, "states": [ { "id": 21402, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21403, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21404, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21405, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21406, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21407, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21408, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21409, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21410, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21411, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21412, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21413, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21414, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21415, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21416, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21417, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21418, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21419, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21420, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21421, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21422, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21423, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21424, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21425, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -414190,45 +307060,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 21429, "states": [ { "id": 21426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 21427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414237,17 +307097,12 @@ }, { "id": 21428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414256,34 +307111,24 @@ }, { "id": 21429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 21430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414292,17 +307137,12 @@ }, { "id": 21431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414311,115 +307151,80 @@ }, { "id": 21432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 21434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 21435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 21436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 21437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 21438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -414427,17 +307232,12 @@ }, { "id": 21439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414447,17 +307247,12 @@ }, { "id": 21440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414467,17 +307262,12 @@ }, { "id": 21441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -414485,17 +307275,12 @@ }, { "id": 21442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414505,17 +307290,12 @@ }, { "id": 21443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414525,34 +307305,24 @@ }, { "id": 21444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414560,17 +307330,12 @@ }, { "id": 21446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414578,34 +307343,24 @@ }, { "id": 21447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414613,17 +307368,12 @@ }, { "id": 21449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414631,17 +307381,12 @@ }, { "id": 21450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -414649,17 +307394,12 @@ }, { "id": 21451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414669,17 +307409,12 @@ }, { "id": 21452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414689,17 +307424,12 @@ }, { "id": 21453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -414707,17 +307437,12 @@ }, { "id": 21454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414727,17 +307452,12 @@ }, { "id": 21455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414747,34 +307467,24 @@ }, { "id": 21456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414782,17 +307492,12 @@ }, { "id": 21458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414800,34 +307505,24 @@ }, { "id": 21459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 21460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414835,17 +307530,12 @@ }, { "id": 21461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -414853,17 +307543,12 @@ }, { "id": 21462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -414871,17 +307556,12 @@ }, { "id": 21463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414891,17 +307571,12 @@ }, { "id": 21464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414911,17 +307586,12 @@ }, { "id": 21465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -414929,17 +307599,12 @@ }, { "id": 21466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414949,17 +307614,12 @@ }, { "id": 21467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -414969,34 +307629,24 @@ }, { "id": 21468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415004,17 +307654,12 @@ }, { "id": 21470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415022,34 +307667,24 @@ }, { "id": 21471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415057,17 +307692,12 @@ }, { "id": 21473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415075,17 +307705,12 @@ }, { "id": 21474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -415094,17 +307719,12 @@ }, { "id": 21475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415115,17 +307735,12 @@ }, { "id": 21476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415136,17 +307751,12 @@ }, { "id": 21477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -415155,17 +307765,12 @@ }, { "id": 21478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415176,17 +307781,12 @@ }, { "id": 21479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415197,34 +307797,24 @@ }, { "id": 21480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415233,17 +307823,12 @@ }, { "id": 21482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415252,34 +307837,24 @@ }, { "id": 21483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415288,17 +307863,12 @@ }, { "id": 21485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415307,17 +307877,12 @@ }, { "id": 21486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -415326,17 +307891,12 @@ }, { "id": 21487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415347,17 +307907,12 @@ }, { "id": 21488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415368,17 +307923,12 @@ }, { "id": 21489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -415387,17 +307937,12 @@ }, { "id": 21490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415408,17 +307953,12 @@ }, { "id": 21491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415429,34 +307969,24 @@ }, { "id": 21492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415465,17 +307995,12 @@ }, { "id": 21494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415484,34 +308009,24 @@ }, { "id": 21495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415520,17 +308035,12 @@ }, { "id": 21497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415539,17 +308049,12 @@ }, { "id": 21498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -415557,17 +308062,12 @@ }, { "id": 21499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415577,17 +308077,12 @@ }, { "id": 21500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415597,17 +308092,12 @@ }, { "id": 21501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -415615,17 +308105,12 @@ }, { "id": 21502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415635,17 +308120,12 @@ }, { "id": 21503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415655,34 +308135,24 @@ }, { "id": 21504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415690,17 +308160,12 @@ }, { "id": 21506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415708,34 +308173,24 @@ }, { "id": 21507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 21508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415743,17 +308198,12 @@ }, { "id": 21509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -415761,17 +308211,12 @@ }, { "id": 21510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -415780,17 +308225,12 @@ }, { "id": 21511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415801,17 +308241,12 @@ }, { "id": 21512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415822,17 +308257,12 @@ }, { "id": 21513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -415841,17 +308271,12 @@ }, { "id": 21514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415862,17 +308287,12 @@ }, { "id": 21515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -415883,34 +308303,24 @@ }, { "id": 21516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415919,17 +308329,12 @@ }, { "id": 21518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415938,34 +308343,24 @@ }, { "id": 21519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415974,17 +308369,12 @@ }, { "id": 21521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -415993,17 +308383,12 @@ }, { "id": 21522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -416012,17 +308397,12 @@ }, { "id": 21523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -416033,17 +308413,12 @@ }, { "id": 21524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -416054,17 +308429,12 @@ }, { "id": 21525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -416073,17 +308443,12 @@ }, { "id": 21526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -416094,17 +308459,12 @@ }, { "id": 21527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -416115,34 +308475,24 @@ }, { "id": 21528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -416151,17 +308501,12 @@ }, { "id": 21530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -416170,34 +308515,24 @@ }, { "id": 21531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 21532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -416206,17 +308541,12 @@ }, { "id": 21533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -416225,17 +308555,12 @@ }, { "id": 21534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -416243,17 +308568,12 @@ }, { "id": 21535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416262,17 +308582,12 @@ }, { "id": 21536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416281,17 +308596,12 @@ }, { "id": 21537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -416299,17 +308609,12 @@ }, { "id": 21538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416318,17 +308623,12 @@ }, { "id": 21539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416337,119 +308637,84 @@ }, { "id": 21540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -416458,17 +308723,12 @@ }, { "id": 21547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416478,17 +308738,12 @@ }, { "id": 21548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416498,17 +308753,12 @@ }, { "id": 21549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -416517,17 +308767,12 @@ }, { "id": 21550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416537,17 +308782,12 @@ }, { "id": 21551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416557,17 +308797,12 @@ }, { "id": 21552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -416575,17 +308810,12 @@ }, { "id": 21553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416593,17 +308823,12 @@ }, { "id": 21554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416611,17 +308836,12 @@ }, { "id": 21555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -416629,17 +308849,12 @@ }, { "id": 21556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416647,17 +308862,12 @@ }, { "id": 21557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416665,17 +308875,12 @@ }, { "id": 21558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -416684,17 +308889,12 @@ }, { "id": 21559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416704,17 +308904,12 @@ }, { "id": 21560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416724,17 +308919,12 @@ }, { "id": 21561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -416743,17 +308933,12 @@ }, { "id": 21562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416763,17 +308948,12 @@ }, { "id": 21563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416783,17 +308963,12 @@ }, { "id": 21564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -416801,17 +308976,12 @@ }, { "id": 21565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416819,17 +308989,12 @@ }, { "id": 21566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416837,17 +309002,12 @@ }, { "id": 21567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -416855,17 +309015,12 @@ }, { "id": 21568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416873,17 +309028,12 @@ }, { "id": 21569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -416891,17 +309041,12 @@ }, { "id": 21570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -416910,17 +309055,12 @@ }, { "id": 21571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416930,17 +309070,12 @@ }, { "id": 21572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416950,17 +309085,12 @@ }, { "id": 21573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -416969,17 +309099,12 @@ }, { "id": 21574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -416989,17 +309114,12 @@ }, { "id": 21575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417009,17 +309129,12 @@ }, { "id": 21576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -417027,17 +309142,12 @@ }, { "id": 21577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417045,17 +309155,12 @@ }, { "id": 21578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417063,17 +309168,12 @@ }, { "id": 21579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -417081,17 +309181,12 @@ }, { "id": 21580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417099,17 +309194,12 @@ }, { "id": 21581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417117,17 +309207,12 @@ }, { "id": 21582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417137,17 +309222,12 @@ }, { "id": 21583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417158,17 +309238,12 @@ }, { "id": 21584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417179,17 +309254,12 @@ }, { "id": 21585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417199,17 +309269,12 @@ }, { "id": 21586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417220,17 +309285,12 @@ }, { "id": 21587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417241,17 +309301,12 @@ }, { "id": 21588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -417259,17 +309314,12 @@ }, { "id": 21589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417278,17 +309328,12 @@ }, { "id": 21590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417297,17 +309342,12 @@ }, { "id": 21591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -417315,17 +309355,12 @@ }, { "id": 21592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417334,17 +309369,12 @@ }, { "id": 21593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417353,17 +309383,12 @@ }, { "id": 21594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417373,17 +309398,12 @@ }, { "id": 21595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417394,17 +309414,12 @@ }, { "id": 21596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417415,17 +309430,12 @@ }, { "id": 21597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417435,17 +309445,12 @@ }, { "id": 21598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417456,17 +309461,12 @@ }, { "id": 21599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417477,17 +309477,12 @@ }, { "id": 21600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -417495,17 +309490,12 @@ }, { "id": 21601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417514,17 +309504,12 @@ }, { "id": 21602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417533,17 +309518,12 @@ }, { "id": 21603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -417551,17 +309531,12 @@ }, { "id": 21604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417570,17 +309545,12 @@ }, { "id": 21605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417589,17 +309559,12 @@ }, { "id": 21606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417608,17 +309573,12 @@ }, { "id": 21607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417628,17 +309588,12 @@ }, { "id": 21608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417648,17 +309603,12 @@ }, { "id": 21609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417667,17 +309617,12 @@ }, { "id": 21610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417687,17 +309632,12 @@ }, { "id": 21611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417707,17 +309647,12 @@ }, { "id": 21612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -417725,17 +309660,12 @@ }, { "id": 21613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417743,17 +309673,12 @@ }, { "id": 21614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417761,17 +309686,12 @@ }, { "id": 21615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -417779,17 +309699,12 @@ }, { "id": 21616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417797,17 +309712,12 @@ }, { "id": 21617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -417815,17 +309725,12 @@ }, { "id": 21618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417835,17 +309740,12 @@ }, { "id": 21619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417856,17 +309756,12 @@ }, { "id": 21620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417877,17 +309772,12 @@ }, { "id": 21621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -417897,17 +309787,12 @@ }, { "id": 21622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417918,17 +309803,12 @@ }, { "id": 21623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -417939,17 +309819,12 @@ }, { "id": 21624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -417957,17 +309832,12 @@ }, { "id": 21625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417976,17 +309846,12 @@ }, { "id": 21626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -417995,17 +309860,12 @@ }, { "id": 21627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -418013,17 +309873,12 @@ }, { "id": 21628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -418032,17 +309887,12 @@ }, { "id": 21629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -418051,17 +309901,12 @@ }, { "id": 21630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -418071,17 +309916,12 @@ }, { "id": 21631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418092,17 +309932,12 @@ }, { "id": 21632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418113,17 +309948,12 @@ }, { "id": 21633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -418133,17 +309963,12 @@ }, { "id": 21634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418154,17 +309979,12 @@ }, { "id": 21635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418175,17 +309995,12 @@ }, { "id": 21636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -418193,17 +310008,12 @@ }, { "id": 21637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -418212,17 +310022,12 @@ }, { "id": 21638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -418231,17 +310036,12 @@ }, { "id": 21639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -418249,17 +310049,12 @@ }, { "id": 21640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -418268,17 +310063,12 @@ }, { "id": 21641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -418287,17 +310077,12 @@ }, { "id": 21642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -418305,17 +310090,12 @@ }, { "id": 21643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418324,17 +310104,12 @@ }, { "id": 21644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418343,17 +310118,12 @@ }, { "id": 21645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -418361,17 +310131,12 @@ }, { "id": 21646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418380,17 +310145,12 @@ }, { "id": 21647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418399,119 +310159,84 @@ }, { "id": 21648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 21652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 21654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -418520,17 +310245,12 @@ }, { "id": 21655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418540,17 +310260,12 @@ }, { "id": 21656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418560,17 +310275,12 @@ }, { "id": 21657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -418579,17 +310289,12 @@ }, { "id": 21658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418599,17 +310304,12 @@ }, { "id": 21659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418619,17 +310319,12 @@ }, { "id": 21660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -418637,17 +310332,12 @@ }, { "id": 21661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418655,17 +310345,12 @@ }, { "id": 21662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418673,17 +310358,12 @@ }, { "id": 21663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -418691,17 +310371,12 @@ }, { "id": 21664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418709,17 +310384,12 @@ }, { "id": 21665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418727,17 +310397,12 @@ }, { "id": 21666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -418746,17 +310411,12 @@ }, { "id": 21667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418766,17 +310426,12 @@ }, { "id": 21668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418786,17 +310441,12 @@ }, { "id": 21669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -418805,17 +310455,12 @@ }, { "id": 21670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418825,17 +310470,12 @@ }, { "id": 21671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418845,17 +310485,12 @@ }, { "id": 21672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -418863,17 +310498,12 @@ }, { "id": 21673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418881,17 +310511,12 @@ }, { "id": 21674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418899,17 +310524,12 @@ }, { "id": 21675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -418917,17 +310537,12 @@ }, { "id": 21676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418935,17 +310550,12 @@ }, { "id": 21677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -418953,17 +310563,12 @@ }, { "id": 21678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -418972,17 +310577,12 @@ }, { "id": 21679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -418992,17 +310592,12 @@ }, { "id": 21680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419012,17 +310607,12 @@ }, { "id": 21681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419031,17 +310621,12 @@ }, { "id": 21682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419051,17 +310636,12 @@ }, { "id": 21683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419071,17 +310651,12 @@ }, { "id": 21684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -419089,17 +310664,12 @@ }, { "id": 21685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419107,17 +310677,12 @@ }, { "id": 21686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419125,17 +310690,12 @@ }, { "id": 21687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -419143,17 +310703,12 @@ }, { "id": 21688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419161,17 +310716,12 @@ }, { "id": 21689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419179,17 +310729,12 @@ }, { "id": 21690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419199,17 +310744,12 @@ }, { "id": 21691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419220,17 +310760,12 @@ }, { "id": 21692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419241,17 +310776,12 @@ }, { "id": 21693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419261,17 +310791,12 @@ }, { "id": 21694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419282,17 +310807,12 @@ }, { "id": 21695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419303,17 +310823,12 @@ }, { "id": 21696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -419321,17 +310836,12 @@ }, { "id": 21697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419340,17 +310850,12 @@ }, { "id": 21698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419359,17 +310864,12 @@ }, { "id": 21699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -419377,17 +310877,12 @@ }, { "id": 21700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419396,17 +310891,12 @@ }, { "id": 21701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419415,17 +310905,12 @@ }, { "id": 21702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419435,17 +310920,12 @@ }, { "id": 21703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419456,17 +310936,12 @@ }, { "id": 21704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419477,17 +310952,12 @@ }, { "id": 21705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419497,17 +310967,12 @@ }, { "id": 21706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419518,17 +310983,12 @@ }, { "id": 21707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419539,17 +310999,12 @@ }, { "id": 21708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -419557,17 +311012,12 @@ }, { "id": 21709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419576,17 +311026,12 @@ }, { "id": 21710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419595,17 +311040,12 @@ }, { "id": 21711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -419613,17 +311053,12 @@ }, { "id": 21712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419632,17 +311067,12 @@ }, { "id": 21713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -419651,17 +311081,12 @@ }, { "id": 21714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419670,17 +311095,12 @@ }, { "id": 21715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419690,17 +311110,12 @@ }, { "id": 21716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419710,17 +311125,12 @@ }, { "id": 21717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419729,17 +311139,12 @@ }, { "id": 21718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419749,17 +311154,12 @@ }, { "id": 21719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419769,17 +311169,12 @@ }, { "id": 21720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -419787,17 +311182,12 @@ }, { "id": 21721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419805,17 +311195,12 @@ }, { "id": 21722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419823,17 +311208,12 @@ }, { "id": 21723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -419841,17 +311221,12 @@ }, { "id": 21724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419859,17 +311234,12 @@ }, { "id": 21725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -419877,17 +311247,12 @@ }, { "id": 21726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419897,17 +311262,12 @@ }, { "id": 21727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419918,17 +311278,12 @@ }, { "id": 21728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419939,17 +311294,12 @@ }, { "id": 21729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -419959,17 +311309,12 @@ }, { "id": 21730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -419980,17 +311325,12 @@ }, { "id": 21731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -420001,17 +311341,12 @@ }, { "id": 21732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -420019,17 +311354,12 @@ }, { "id": 21733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420038,17 +311368,12 @@ }, { "id": 21734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420057,17 +311382,12 @@ }, { "id": 21735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -420075,17 +311395,12 @@ }, { "id": 21736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420094,17 +311409,12 @@ }, { "id": 21737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420113,17 +311423,12 @@ }, { "id": 21738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -420133,17 +311438,12 @@ }, { "id": 21739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -420154,17 +311454,12 @@ }, { "id": 21740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -420175,17 +311470,12 @@ }, { "id": 21741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -420195,17 +311485,12 @@ }, { "id": 21742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -420216,17 +311501,12 @@ }, { "id": 21743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -420237,17 +311517,12 @@ }, { "id": 21744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -420255,17 +311530,12 @@ }, { "id": 21745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420274,17 +311544,12 @@ }, { "id": 21746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420293,17 +311558,12 @@ }, { "id": 21747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -420311,17 +311571,12 @@ }, { "id": 21748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420330,17 +311585,12 @@ }, { "id": 21749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -420385,17 +311635,12 @@ "states": [ { "id": 21750, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -420438,17 +311683,12 @@ "states": [ { "id": 21751, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 2.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -420491,17 +311731,12 @@ "states": [ { "id": 21752, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.8, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -420582,264 +311817,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21756, "states": [ { "id": 21753, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21754, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21755, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21756, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21757, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21758, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21759, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21760, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21761, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21762, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21763, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21764, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21765, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21766, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21767, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21768, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -420920,264 +312075,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21772, "states": [ { "id": 21769, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21770, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21771, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21772, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21773, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21774, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21775, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21776, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21777, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21778, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21779, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21780, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21781, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21782, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21783, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21784, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -421258,264 +312333,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21788, "states": [ { "id": 21785, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21786, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21787, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21788, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21789, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21790, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21791, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21792, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21793, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21794, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21795, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21796, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21797, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21798, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21799, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21800, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -421596,264 +312591,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21804, "states": [ { "id": 21801, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21802, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21803, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21804, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21805, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21806, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21807, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21808, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21809, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21810, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21811, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21812, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21813, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21814, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21815, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21816, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -421934,264 +312849,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21820, "states": [ { "id": 21817, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21818, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21819, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21820, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21821, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21822, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21823, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21824, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21825, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21826, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21827, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21828, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21829, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21830, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21831, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21832, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -422272,264 +313107,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21836, "states": [ { "id": 21833, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21834, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21835, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21836, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21837, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21838, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21839, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21840, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21841, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21842, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21843, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21844, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21845, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21846, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21847, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21848, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -422610,264 +313365,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21852, "states": [ { "id": 21849, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21850, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21851, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21852, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21853, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21854, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21855, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21856, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21857, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21858, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21859, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21860, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21861, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21862, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21863, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21864, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -422948,264 +313623,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21868, "states": [ { "id": 21865, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21866, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21867, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21868, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21869, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21870, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21871, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21872, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21873, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21874, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21875, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21876, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21877, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21878, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21879, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21880, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -423286,264 +313881,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21884, "states": [ { "id": 21881, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21882, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21883, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21884, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21885, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21886, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21887, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21888, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21889, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21890, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21891, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21892, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21893, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21894, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21895, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21896, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -423624,264 +314139,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21900, "states": [ { "id": 21897, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21898, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21899, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21900, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21901, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21902, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21903, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21904, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21905, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21906, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21907, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21908, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21909, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21910, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21911, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21912, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -423962,264 +314397,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21916, "states": [ { "id": 21913, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21914, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21915, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21916, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21917, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21918, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21919, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21920, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21921, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21922, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21923, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21924, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21925, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21926, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21927, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21928, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -424300,264 +314655,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21932, "states": [ { "id": 21929, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21930, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21931, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21932, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21933, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21934, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21935, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21936, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21937, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21938, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21939, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21940, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21941, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21942, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21943, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21944, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -424638,264 +314913,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21948, "states": [ { "id": 21945, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21946, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21947, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21948, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21949, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21950, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21951, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21952, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21953, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21954, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21955, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21956, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21957, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21958, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21959, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21960, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -424976,264 +315171,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21964, "states": [ { "id": 21961, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21962, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21963, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21964, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21965, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21966, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21967, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21968, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21969, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21970, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21971, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21972, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21973, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21974, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21975, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21976, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -425314,264 +315429,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21980, "states": [ { "id": 21977, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21978, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21979, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21980, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21981, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21982, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21983, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21984, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21985, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21986, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21987, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21988, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 21989, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21990, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21991, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 21992, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -425652,264 +315687,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 21996, "states": [ { "id": 21993, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21994, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21995, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21996, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 21997, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21998, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 21999, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 22000, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 22001, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22002, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22003, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22004, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22005, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 22006, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 22007, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 22008, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -425990,264 +315945,184 @@ ] }, "properties": [ - 232622669, - -246020938, - 795783032 + -412225500, + -52597051, + 989206919 ], "default_state_id": 22012, "states": [ { "id": 22009, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 22010, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 22011, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 22012, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 304 ] }, { "id": 22013, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 22014, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 22015, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 22016, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 305 ] }, { "id": 22017, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22018, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 9, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22019, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22020, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 306 ] }, { "id": 22021, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 22022, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 22023, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] }, { "id": 22024, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 307 ] @@ -426281,23 +316156,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22026, "states": [ { "id": 22025, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426305,17 +316175,12 @@ }, { "id": 22026, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426350,23 +316215,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22028, "states": [ { "id": 22027, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426374,17 +316234,12 @@ }, { "id": 22028, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426419,23 +316274,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22030, "states": [ { "id": 22029, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426443,17 +316293,12 @@ }, { "id": 22030, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426488,23 +316333,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22032, "states": [ { "id": 22031, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426512,17 +316352,12 @@ }, { "id": 22032, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426557,23 +316392,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22034, "states": [ { "id": 22033, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426581,17 +316411,12 @@ }, { "id": 22034, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426626,23 +316451,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22036, "states": [ { "id": 22035, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426650,17 +316470,12 @@ }, { "id": 22036, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426695,23 +316510,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22038, "states": [ { "id": 22037, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426719,17 +316529,12 @@ }, { "id": 22038, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426764,23 +316569,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22040, "states": [ { "id": 22039, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426788,17 +316588,12 @@ }, { "id": 22040, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426833,23 +316628,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22042, "states": [ { "id": 22041, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426857,17 +316647,12 @@ }, { "id": 22042, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426902,23 +316687,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22044, "states": [ { "id": 22043, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426926,17 +316706,12 @@ }, { "id": 22044, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426971,23 +316746,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22046, "states": [ { "id": 22045, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -426995,17 +316765,12 @@ }, { "id": 22046, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427040,23 +316805,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22048, "states": [ { "id": 22047, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427064,17 +316824,12 @@ }, { "id": 22048, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427109,23 +316864,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22050, "states": [ { "id": 22049, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427133,17 +316883,12 @@ }, { "id": 22050, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427178,23 +316923,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22052, "states": [ { "id": 22051, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427202,17 +316942,12 @@ }, { "id": 22052, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427247,23 +316982,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22054, "states": [ { "id": 22053, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427271,17 +317001,12 @@ }, { "id": 22054, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427316,23 +317041,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22056, "states": [ { "id": 22055, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427340,17 +317060,12 @@ }, { "id": 22056, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427385,23 +317100,18 @@ ] }, "properties": [ - -246020938 + -52597051 ], "default_state_id": 22058, "states": [ { "id": 22057, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 3, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427409,17 +317119,12 @@ }, { "id": 22058, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 85, 308 @@ -427463,17 +317168,12 @@ "states": [ { "id": 22059, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -427499,17 +317199,12 @@ "states": [ { "id": 22060, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "DESTROY", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -427608,199 +317303,139 @@ ] }, "properties": [ - 1627058566, - 795783032 + 2060047744, + 989206919 ], "default_state_id": 22070, "states": [ { "id": 22061, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 309 ] }, { "id": 22062, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 309 ] }, { "id": 22063, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 310 ] }, { "id": 22064, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 310 ] }, { "id": 22065, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 311 ] }, { "id": 22066, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 311 ] }, { "id": 22067, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 312 ] }, { "id": 22068, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 312 ] }, { "id": 22069, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 313 ] }, { "id": 22070, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 313 ] }, { "id": 22071, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 314 ] }, { "id": 22072, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 5, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 314 ] @@ -427851,199 +317486,139 @@ ] }, "properties": [ - 1627058566, - 795783032 + 2060047744, + 989206919 ], "default_state_id": 22082, "states": [ { "id": 22073, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 315 ] }, { "id": 22074, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 315 ] }, { "id": 22075, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 316 ] }, { "id": 22076, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 316 ] }, { "id": 22077, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 317 ] }, { "id": 22078, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 317 ] }, { "id": 22079, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 318 ] }, { "id": 22080, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 318 ] }, { "id": 22081, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 319 ] }, { "id": 22082, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 319 ] }, { "id": 22083, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 320 ] }, { "id": 22084, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 320 ] @@ -428094,199 +317669,139 @@ ] }, "properties": [ - 1627058566, - 795783032 + 2060047744, + 989206919 ], "default_state_id": 22094, "states": [ { "id": 22085, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 321 ] }, { "id": 22086, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 321 ] }, { "id": 22087, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 322 ] }, { "id": 22088, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 322 ] }, { "id": 22089, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 323 ] }, { "id": 22090, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 323 ] }, { "id": 22091, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 324 ] }, { "id": 22092, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 324 ] }, { "id": 22093, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 325 ] }, { "id": 22094, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 325 ] }, { "id": 22095, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 326 ] }, { "id": 22096, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 326 ] @@ -428337,199 +317852,139 @@ ] }, "properties": [ - 1627058566, - 795783032 + 2060047744, + 989206919 ], "default_state_id": 22106, "states": [ { "id": 22097, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 327 ] }, { "id": 22098, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 327 ] }, { "id": 22099, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 328 ] }, { "id": 22100, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 328 ] }, { "id": 22101, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 329 ] }, { "id": 22102, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 329 ] }, { "id": 22103, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 330 ] }, { "id": 22104, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 330 ] }, { "id": 22105, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 331 ] }, { "id": 22106, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 331 ] }, { "id": 22107, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 143 ] }, { "id": 22108, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 143 ] @@ -428572,17 +318027,12 @@ "states": [ { "id": 22109, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -428635,109 +318085,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 22113, "states": [ { "id": 22110, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 22111, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 22112, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 22113, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 22114, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 22115, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -428776,26 +318196,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 22127, "states": [ { "id": 22116, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -428803,17 +318218,12 @@ }, { "id": 22117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -428821,17 +318231,12 @@ }, { "id": 22118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -428840,17 +318245,12 @@ }, { "id": 22119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -428859,17 +318259,12 @@ }, { "id": 22120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -428878,17 +318273,12 @@ }, { "id": 22121, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -428897,17 +318287,12 @@ }, { "id": 22122, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -428916,17 +318301,12 @@ }, { "id": 22123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -428935,17 +318315,12 @@ }, { "id": 22124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -428954,17 +318329,12 @@ }, { "id": 22125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -428973,17 +318343,12 @@ }, { "id": 22126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -428991,17 +318356,12 @@ }, { "id": 22127, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -429009,17 +318369,12 @@ }, { "id": 22128, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429028,17 +318383,12 @@ }, { "id": 22129, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429047,17 +318397,12 @@ }, { "id": 22130, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -429066,17 +318411,12 @@ }, { "id": 22131, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -429085,17 +318425,12 @@ }, { "id": 22132, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -429103,17 +318438,12 @@ }, { "id": 22133, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -429121,17 +318451,12 @@ }, { "id": 22134, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -429139,17 +318464,12 @@ }, { "id": 22135, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -429157,17 +318477,12 @@ }, { "id": 22136, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -429175,17 +318490,12 @@ }, { "id": 22137, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -429193,17 +318503,12 @@ }, { "id": 22138, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -429212,17 +318517,12 @@ }, { "id": 22139, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -429231,17 +318531,12 @@ }, { "id": 22140, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -429250,17 +318545,12 @@ }, { "id": 22141, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -429269,17 +318559,12 @@ }, { "id": 22142, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -429288,17 +318573,12 @@ }, { "id": 22143, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -429307,17 +318587,12 @@ }, { "id": 22144, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -429326,17 +318601,12 @@ }, { "id": 22145, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -429345,17 +318615,12 @@ }, { "id": 22146, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -429363,17 +318628,12 @@ }, { "id": 22147, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -429381,17 +318641,12 @@ }, { "id": 22148, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -429400,17 +318655,12 @@ }, { "id": 22149, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -429419,17 +318669,12 @@ }, { "id": 22150, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429438,17 +318683,12 @@ }, { "id": 22151, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429457,17 +318697,12 @@ }, { "id": 22152, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -429475,17 +318710,12 @@ }, { "id": 22153, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -429493,17 +318723,12 @@ }, { "id": 22154, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -429511,17 +318736,12 @@ }, { "id": 22155, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -429529,17 +318749,12 @@ }, { "id": 22156, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -429547,17 +318762,12 @@ }, { "id": 22157, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -429565,17 +318775,12 @@ }, { "id": 22158, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -429584,17 +318789,12 @@ }, { "id": 22159, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -429603,17 +318803,12 @@ }, { "id": 22160, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -429622,17 +318817,12 @@ }, { "id": 22161, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -429641,17 +318831,12 @@ }, { "id": 22162, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -429660,17 +318845,12 @@ }, { "id": 22163, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -429679,17 +318859,12 @@ }, { "id": 22164, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -429698,17 +318873,12 @@ }, { "id": 22165, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -429717,17 +318887,12 @@ }, { "id": 22166, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -429735,17 +318900,12 @@ }, { "id": 22167, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -429753,17 +318913,12 @@ }, { "id": 22168, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429772,17 +318927,12 @@ }, { "id": 22169, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429791,17 +318941,12 @@ }, { "id": 22170, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429810,17 +318955,12 @@ }, { "id": 22171, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -429829,17 +318969,12 @@ }, { "id": 22172, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -429847,17 +318982,12 @@ }, { "id": 22173, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -429865,17 +318995,12 @@ }, { "id": 22174, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -429883,17 +319008,12 @@ }, { "id": 22175, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -429901,17 +319021,12 @@ }, { "id": 22176, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -429919,17 +319034,12 @@ }, { "id": 22177, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -429937,17 +319047,12 @@ }, { "id": 22178, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -429956,17 +319061,12 @@ }, { "id": 22179, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -429975,17 +319075,12 @@ }, { "id": 22180, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -429994,17 +319089,12 @@ }, { "id": 22181, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -430013,17 +319103,12 @@ }, { "id": 22182, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -430032,17 +319117,12 @@ }, { "id": 22183, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -430051,17 +319131,12 @@ }, { "id": 22184, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -430070,17 +319145,12 @@ }, { "id": 22185, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -430089,17 +319159,12 @@ }, { "id": 22186, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -430107,17 +319172,12 @@ }, { "id": 22187, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -430125,17 +319185,12 @@ }, { "id": 22188, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -430144,17 +319199,12 @@ }, { "id": 22189, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -430163,17 +319213,12 @@ }, { "id": 22190, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -430182,17 +319227,12 @@ }, { "id": 22191, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -430201,17 +319241,12 @@ }, { "id": 22192, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -430219,17 +319254,12 @@ }, { "id": 22193, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -430237,17 +319267,12 @@ }, { "id": 22194, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -430255,17 +319280,12 @@ }, { "id": 22195, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -430305,45 +319325,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 22199, "states": [ { "id": 22196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 22197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430352,17 +319362,12 @@ }, { "id": 22198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430371,34 +319376,24 @@ }, { "id": 22199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 22200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430407,17 +319402,12 @@ }, { "id": 22201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430426,115 +319416,80 @@ }, { "id": 22202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 22203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 22206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -430542,17 +319497,12 @@ }, { "id": 22209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430562,17 +319512,12 @@ }, { "id": 22210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430582,17 +319527,12 @@ }, { "id": 22211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -430600,17 +319540,12 @@ }, { "id": 22212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430620,17 +319555,12 @@ }, { "id": 22213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430640,34 +319570,24 @@ }, { "id": 22214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430675,17 +319595,12 @@ }, { "id": 22216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430693,34 +319608,24 @@ }, { "id": 22217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430728,17 +319633,12 @@ }, { "id": 22219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430746,17 +319646,12 @@ }, { "id": 22220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -430764,17 +319659,12 @@ }, { "id": 22221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430784,17 +319674,12 @@ }, { "id": 22222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430804,17 +319689,12 @@ }, { "id": 22223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -430822,17 +319702,12 @@ }, { "id": 22224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430842,17 +319717,12 @@ }, { "id": 22225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -430862,34 +319732,24 @@ }, { "id": 22226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430897,17 +319757,12 @@ }, { "id": 22228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430915,34 +319770,24 @@ }, { "id": 22229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430950,17 +319795,12 @@ }, { "id": 22231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -430968,17 +319808,12 @@ }, { "id": 22232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -430986,17 +319821,12 @@ }, { "id": 22233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431006,17 +319836,12 @@ }, { "id": 22234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431026,17 +319851,12 @@ }, { "id": 22235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -431044,17 +319864,12 @@ }, { "id": 22236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431064,17 +319879,12 @@ }, { "id": 22237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431084,34 +319894,24 @@ }, { "id": 22238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431119,17 +319919,12 @@ }, { "id": 22240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431137,34 +319932,24 @@ }, { "id": 22241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431172,17 +319957,12 @@ }, { "id": 22243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431190,17 +319970,12 @@ }, { "id": 22244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -431209,17 +319984,12 @@ }, { "id": 22245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431230,17 +320000,12 @@ }, { "id": 22246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431251,17 +320016,12 @@ }, { "id": 22247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -431270,17 +320030,12 @@ }, { "id": 22248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431291,17 +320046,12 @@ }, { "id": 22249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431312,34 +320062,24 @@ }, { "id": 22250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431348,17 +320088,12 @@ }, { "id": 22252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431367,34 +320102,24 @@ }, { "id": 22253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431403,17 +320128,12 @@ }, { "id": 22255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431422,17 +320142,12 @@ }, { "id": 22256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -431441,17 +320156,12 @@ }, { "id": 22257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431462,17 +320172,12 @@ }, { "id": 22258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431483,17 +320188,12 @@ }, { "id": 22259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -431502,17 +320202,12 @@ }, { "id": 22260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431523,17 +320218,12 @@ }, { "id": 22261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431544,34 +320234,24 @@ }, { "id": 22262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431580,17 +320260,12 @@ }, { "id": 22264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431599,34 +320274,24 @@ }, { "id": 22265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431635,17 +320300,12 @@ }, { "id": 22267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -431654,17 +320314,12 @@ }, { "id": 22268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -431672,17 +320327,12 @@ }, { "id": 22269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431692,17 +320342,12 @@ }, { "id": 22270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431712,17 +320357,12 @@ }, { "id": 22271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -431730,17 +320370,12 @@ }, { "id": 22272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431750,17 +320385,12 @@ }, { "id": 22273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431770,34 +320400,24 @@ }, { "id": 22274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431805,17 +320425,12 @@ }, { "id": 22276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431823,34 +320438,24 @@ }, { "id": 22277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431858,17 +320463,12 @@ }, { "id": 22279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -431876,17 +320476,12 @@ }, { "id": 22280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -431895,17 +320490,12 @@ }, { "id": 22281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431916,17 +320506,12 @@ }, { "id": 22282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431937,17 +320522,12 @@ }, { "id": 22283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -431956,17 +320536,12 @@ }, { "id": 22284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431977,17 +320552,12 @@ }, { "id": 22285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -431998,34 +320568,24 @@ }, { "id": 22286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432034,17 +320594,12 @@ }, { "id": 22288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432053,34 +320608,24 @@ }, { "id": 22289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432089,17 +320634,12 @@ }, { "id": 22291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432108,17 +320648,12 @@ }, { "id": 22292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -432127,17 +320662,12 @@ }, { "id": 22293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -432148,17 +320678,12 @@ }, { "id": 22294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -432169,17 +320694,12 @@ }, { "id": 22295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -432188,17 +320708,12 @@ }, { "id": 22296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -432209,17 +320724,12 @@ }, { "id": 22297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -432230,34 +320740,24 @@ }, { "id": 22298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432266,17 +320766,12 @@ }, { "id": 22300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432285,34 +320780,24 @@ }, { "id": 22301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432321,17 +320806,12 @@ }, { "id": 22303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -432340,17 +320820,12 @@ }, { "id": 22304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -432358,17 +320833,12 @@ }, { "id": 22305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432377,17 +320847,12 @@ }, { "id": 22306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432396,17 +320861,12 @@ }, { "id": 22307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -432414,17 +320874,12 @@ }, { "id": 22308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432433,17 +320888,12 @@ }, { "id": 22309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432452,119 +320902,84 @@ }, { "id": 22310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -432573,17 +320988,12 @@ }, { "id": 22317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432593,17 +321003,12 @@ }, { "id": 22318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432613,17 +321018,12 @@ }, { "id": 22319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -432632,17 +321032,12 @@ }, { "id": 22320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432652,17 +321047,12 @@ }, { "id": 22321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432672,17 +321062,12 @@ }, { "id": 22322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -432690,17 +321075,12 @@ }, { "id": 22323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432708,17 +321088,12 @@ }, { "id": 22324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432726,17 +321101,12 @@ }, { "id": 22325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -432744,17 +321114,12 @@ }, { "id": 22326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432762,17 +321127,12 @@ }, { "id": 22327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432780,17 +321140,12 @@ }, { "id": 22328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -432799,17 +321154,12 @@ }, { "id": 22329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432819,17 +321169,12 @@ }, { "id": 22330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432839,17 +321184,12 @@ }, { "id": 22331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -432858,17 +321198,12 @@ }, { "id": 22332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432878,17 +321213,12 @@ }, { "id": 22333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -432898,17 +321228,12 @@ }, { "id": 22334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -432916,17 +321241,12 @@ }, { "id": 22335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432934,17 +321254,12 @@ }, { "id": 22336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432952,17 +321267,12 @@ }, { "id": 22337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -432970,17 +321280,12 @@ }, { "id": 22338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -432988,17 +321293,12 @@ }, { "id": 22339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -433006,17 +321306,12 @@ }, { "id": 22340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433025,17 +321320,12 @@ }, { "id": 22341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433045,17 +321335,12 @@ }, { "id": 22342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433065,17 +321350,12 @@ }, { "id": 22343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433084,17 +321364,12 @@ }, { "id": 22344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433104,17 +321379,12 @@ }, { "id": 22345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433124,17 +321394,12 @@ }, { "id": 22346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -433142,17 +321407,12 @@ }, { "id": 22347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433160,17 +321420,12 @@ }, { "id": 22348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433178,17 +321433,12 @@ }, { "id": 22349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -433196,17 +321446,12 @@ }, { "id": 22350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433214,17 +321459,12 @@ }, { "id": 22351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433232,17 +321472,12 @@ }, { "id": 22352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433252,17 +321487,12 @@ }, { "id": 22353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433273,17 +321503,12 @@ }, { "id": 22354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433294,17 +321519,12 @@ }, { "id": 22355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433314,17 +321534,12 @@ }, { "id": 22356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433335,17 +321550,12 @@ }, { "id": 22357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433356,17 +321566,12 @@ }, { "id": 22358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -433374,17 +321579,12 @@ }, { "id": 22359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433393,17 +321593,12 @@ }, { "id": 22360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433412,17 +321607,12 @@ }, { "id": 22361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -433430,17 +321620,12 @@ }, { "id": 22362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433449,17 +321634,12 @@ }, { "id": 22363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433468,17 +321648,12 @@ }, { "id": 22364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433488,17 +321663,12 @@ }, { "id": 22365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433509,17 +321679,12 @@ }, { "id": 22366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433530,17 +321695,12 @@ }, { "id": 22367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433550,17 +321710,12 @@ }, { "id": 22368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433571,17 +321726,12 @@ }, { "id": 22369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433592,17 +321742,12 @@ }, { "id": 22370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -433610,17 +321755,12 @@ }, { "id": 22371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433629,17 +321769,12 @@ }, { "id": 22372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433648,17 +321783,12 @@ }, { "id": 22373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -433666,17 +321796,12 @@ }, { "id": 22374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433685,17 +321810,12 @@ }, { "id": 22375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -433704,17 +321824,12 @@ }, { "id": 22376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433723,17 +321838,12 @@ }, { "id": 22377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433743,17 +321853,12 @@ }, { "id": 22378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433763,17 +321868,12 @@ }, { "id": 22379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433782,17 +321882,12 @@ }, { "id": 22380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433802,17 +321897,12 @@ }, { "id": 22381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433822,17 +321912,12 @@ }, { "id": 22382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -433840,17 +321925,12 @@ }, { "id": 22383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433858,17 +321938,12 @@ }, { "id": 22384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433876,17 +321951,12 @@ }, { "id": 22385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -433894,17 +321964,12 @@ }, { "id": 22386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433912,17 +321977,12 @@ }, { "id": 22387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -433930,17 +321990,12 @@ }, { "id": 22388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -433950,17 +322005,12 @@ }, { "id": 22389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433971,17 +322021,12 @@ }, { "id": 22390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -433992,17 +322037,12 @@ }, { "id": 22391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -434012,17 +322052,12 @@ }, { "id": 22392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434033,17 +322068,12 @@ }, { "id": 22393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434054,17 +322084,12 @@ }, { "id": 22394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -434072,17 +322097,12 @@ }, { "id": 22395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434091,17 +322111,12 @@ }, { "id": 22396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434110,17 +322125,12 @@ }, { "id": 22397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -434128,17 +322138,12 @@ }, { "id": 22398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434147,17 +322152,12 @@ }, { "id": 22399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434166,17 +322166,12 @@ }, { "id": 22400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -434186,17 +322181,12 @@ }, { "id": 22401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434207,17 +322197,12 @@ }, { "id": 22402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434228,17 +322213,12 @@ }, { "id": 22403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -434248,17 +322228,12 @@ }, { "id": 22404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434269,17 +322244,12 @@ }, { "id": 22405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434290,17 +322260,12 @@ }, { "id": 22406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -434308,17 +322273,12 @@ }, { "id": 22407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434327,17 +322287,12 @@ }, { "id": 22408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434346,17 +322301,12 @@ }, { "id": 22409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -434364,17 +322314,12 @@ }, { "id": 22410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434383,17 +322328,12 @@ }, { "id": 22411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -434402,17 +322342,12 @@ }, { "id": 22412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -434420,17 +322355,12 @@ }, { "id": 22413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434439,17 +322369,12 @@ }, { "id": 22414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434458,17 +322383,12 @@ }, { "id": 22415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -434476,17 +322396,12 @@ }, { "id": 22416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434495,17 +322410,12 @@ }, { "id": 22417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434514,119 +322424,84 @@ }, { "id": 22418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -434635,17 +322510,12 @@ }, { "id": 22425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434655,17 +322525,12 @@ }, { "id": 22426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434675,17 +322540,12 @@ }, { "id": 22427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -434694,17 +322554,12 @@ }, { "id": 22428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434714,17 +322569,12 @@ }, { "id": 22429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434734,17 +322584,12 @@ }, { "id": 22430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -434752,17 +322597,12 @@ }, { "id": 22431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -434770,17 +322610,12 @@ }, { "id": 22432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -434788,17 +322623,12 @@ }, { "id": 22433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -434806,17 +322636,12 @@ }, { "id": 22434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -434824,17 +322649,12 @@ }, { "id": 22435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -434842,17 +322662,12 @@ }, { "id": 22436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -434861,17 +322676,12 @@ }, { "id": 22437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434881,17 +322691,12 @@ }, { "id": 22438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434901,17 +322706,12 @@ }, { "id": 22439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -434920,17 +322720,12 @@ }, { "id": 22440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434940,17 +322735,12 @@ }, { "id": 22441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -434960,17 +322750,12 @@ }, { "id": 22442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -434978,17 +322763,12 @@ }, { "id": 22443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -434996,17 +322776,12 @@ }, { "id": 22444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -435014,17 +322789,12 @@ }, { "id": 22445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -435032,17 +322802,12 @@ }, { "id": 22446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -435050,17 +322815,12 @@ }, { "id": 22447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -435068,17 +322828,12 @@ }, { "id": 22448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435087,17 +322842,12 @@ }, { "id": 22449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435107,17 +322857,12 @@ }, { "id": 22450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435127,17 +322872,12 @@ }, { "id": 22451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435146,17 +322886,12 @@ }, { "id": 22452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435166,17 +322901,12 @@ }, { "id": 22453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435186,17 +322916,12 @@ }, { "id": 22454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -435204,17 +322929,12 @@ }, { "id": 22455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435222,17 +322942,12 @@ }, { "id": 22456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435240,17 +322955,12 @@ }, { "id": 22457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -435258,17 +322968,12 @@ }, { "id": 22458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435276,17 +322981,12 @@ }, { "id": 22459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435294,17 +322994,12 @@ }, { "id": 22460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435314,17 +323009,12 @@ }, { "id": 22461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435335,17 +323025,12 @@ }, { "id": 22462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435356,17 +323041,12 @@ }, { "id": 22463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435376,17 +323056,12 @@ }, { "id": 22464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435397,17 +323072,12 @@ }, { "id": 22465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435418,17 +323088,12 @@ }, { "id": 22466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -435436,17 +323101,12 @@ }, { "id": 22467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435455,17 +323115,12 @@ }, { "id": 22468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435474,17 +323129,12 @@ }, { "id": 22469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -435492,17 +323142,12 @@ }, { "id": 22470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435511,17 +323156,12 @@ }, { "id": 22471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435530,17 +323170,12 @@ }, { "id": 22472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435550,17 +323185,12 @@ }, { "id": 22473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435571,17 +323201,12 @@ }, { "id": 22474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435592,17 +323217,12 @@ }, { "id": 22475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435612,17 +323232,12 @@ }, { "id": 22476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435633,17 +323248,12 @@ }, { "id": 22477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435654,17 +323264,12 @@ }, { "id": 22478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -435672,17 +323277,12 @@ }, { "id": 22479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435691,17 +323291,12 @@ }, { "id": 22480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435710,17 +323305,12 @@ }, { "id": 22481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -435728,17 +323318,12 @@ }, { "id": 22482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435747,17 +323332,12 @@ }, { "id": 22483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -435766,17 +323346,12 @@ }, { "id": 22484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435785,17 +323360,12 @@ }, { "id": 22485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435805,17 +323375,12 @@ }, { "id": 22486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435825,17 +323390,12 @@ }, { "id": 22487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -435844,17 +323404,12 @@ }, { "id": 22488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435864,17 +323419,12 @@ }, { "id": 22489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -435884,17 +323434,12 @@ }, { "id": 22490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -435902,17 +323447,12 @@ }, { "id": 22491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435920,17 +323460,12 @@ }, { "id": 22492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435938,17 +323473,12 @@ }, { "id": 22493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -435956,17 +323486,12 @@ }, { "id": 22494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435974,17 +323499,12 @@ }, { "id": 22495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -435992,17 +323512,12 @@ }, { "id": 22496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -436012,17 +323527,12 @@ }, { "id": 22497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436033,17 +323543,12 @@ }, { "id": 22498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436054,17 +323559,12 @@ }, { "id": 22499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -436074,17 +323574,12 @@ }, { "id": 22500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436095,17 +323590,12 @@ }, { "id": 22501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436116,17 +323606,12 @@ }, { "id": 22502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -436134,17 +323619,12 @@ }, { "id": 22503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436153,17 +323633,12 @@ }, { "id": 22504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436172,17 +323647,12 @@ }, { "id": 22505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -436190,17 +323660,12 @@ }, { "id": 22506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436209,17 +323674,12 @@ }, { "id": 22507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436228,17 +323688,12 @@ }, { "id": 22508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -436248,17 +323703,12 @@ }, { "id": 22509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436269,17 +323719,12 @@ }, { "id": 22510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436290,17 +323735,12 @@ }, { "id": 22511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -436310,17 +323750,12 @@ }, { "id": 22512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436331,17 +323766,12 @@ }, { "id": 22513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -436352,17 +323782,12 @@ }, { "id": 22514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -436370,17 +323795,12 @@ }, { "id": 22515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436389,17 +323809,12 @@ }, { "id": 22516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436408,17 +323823,12 @@ }, { "id": 22517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -436426,17 +323836,12 @@ }, { "id": 22518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436445,17 +323850,12 @@ }, { "id": 22519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -436500,17 +323900,12 @@ "states": [ { "id": 22520, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -436563,109 +323958,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 22524, "states": [ { "id": 22521, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 22522, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 22523, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 22524, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 22525, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 22526, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -436704,26 +324069,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 22538, "states": [ { "id": 22527, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -436731,17 +324091,12 @@ }, { "id": 22528, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -436749,17 +324104,12 @@ }, { "id": 22529, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -436768,17 +324118,12 @@ }, { "id": 22530, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -436787,17 +324132,12 @@ }, { "id": 22531, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -436806,17 +324146,12 @@ }, { "id": 22532, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -436825,17 +324160,12 @@ }, { "id": 22533, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -436844,17 +324174,12 @@ }, { "id": 22534, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -436863,17 +324188,12 @@ }, { "id": 22535, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -436882,17 +324202,12 @@ }, { "id": 22536, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -436901,17 +324216,12 @@ }, { "id": 22537, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -436919,17 +324229,12 @@ }, { "id": 22538, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -436937,17 +324242,12 @@ }, { "id": 22539, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -436956,17 +324256,12 @@ }, { "id": 22540, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -436975,17 +324270,12 @@ }, { "id": 22541, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -436994,17 +324284,12 @@ }, { "id": 22542, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -437013,17 +324298,12 @@ }, { "id": 22543, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -437031,17 +324311,12 @@ }, { "id": 22544, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -437049,17 +324324,12 @@ }, { "id": 22545, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -437067,17 +324337,12 @@ }, { "id": 22546, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -437085,17 +324350,12 @@ }, { "id": 22547, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -437103,17 +324363,12 @@ }, { "id": 22548, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -437121,17 +324376,12 @@ }, { "id": 22549, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -437140,17 +324390,12 @@ }, { "id": 22550, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -437159,17 +324404,12 @@ }, { "id": 22551, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -437178,17 +324418,12 @@ }, { "id": 22552, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -437197,17 +324432,12 @@ }, { "id": 22553, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -437216,17 +324446,12 @@ }, { "id": 22554, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -437235,17 +324460,12 @@ }, { "id": 22555, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -437254,17 +324474,12 @@ }, { "id": 22556, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -437273,17 +324488,12 @@ }, { "id": 22557, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -437291,17 +324501,12 @@ }, { "id": 22558, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -437309,17 +324514,12 @@ }, { "id": 22559, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -437328,17 +324528,12 @@ }, { "id": 22560, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -437347,17 +324542,12 @@ }, { "id": 22561, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -437366,17 +324556,12 @@ }, { "id": 22562, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -437385,17 +324570,12 @@ }, { "id": 22563, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -437403,17 +324583,12 @@ }, { "id": 22564, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -437421,17 +324596,12 @@ }, { "id": 22565, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -437439,17 +324609,12 @@ }, { "id": 22566, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -437457,17 +324622,12 @@ }, { "id": 22567, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -437475,17 +324635,12 @@ }, { "id": 22568, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -437493,17 +324648,12 @@ }, { "id": 22569, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -437512,17 +324662,12 @@ }, { "id": 22570, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -437531,17 +324676,12 @@ }, { "id": 22571, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -437550,17 +324690,12 @@ }, { "id": 22572, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -437569,17 +324704,12 @@ }, { "id": 22573, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -437588,17 +324718,12 @@ }, { "id": 22574, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -437607,17 +324732,12 @@ }, { "id": 22575, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -437626,17 +324746,12 @@ }, { "id": 22576, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -437645,17 +324760,12 @@ }, { "id": 22577, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -437663,17 +324773,12 @@ }, { "id": 22578, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -437681,17 +324786,12 @@ }, { "id": 22579, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -437700,17 +324800,12 @@ }, { "id": 22580, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -437719,17 +324814,12 @@ }, { "id": 22581, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -437738,17 +324828,12 @@ }, { "id": 22582, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -437757,17 +324842,12 @@ }, { "id": 22583, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -437775,17 +324855,12 @@ }, { "id": 22584, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -437793,17 +324868,12 @@ }, { "id": 22585, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -437811,17 +324881,12 @@ }, { "id": 22586, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -437829,17 +324894,12 @@ }, { "id": 22587, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -437847,17 +324907,12 @@ }, { "id": 22588, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -437865,17 +324920,12 @@ }, { "id": 22589, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -437884,17 +324934,12 @@ }, { "id": 22590, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -437903,17 +324948,12 @@ }, { "id": 22591, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -437922,17 +324962,12 @@ }, { "id": 22592, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -437941,17 +324976,12 @@ }, { "id": 22593, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -437960,17 +324990,12 @@ }, { "id": 22594, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -437979,17 +325004,12 @@ }, { "id": 22595, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -437998,17 +325018,12 @@ }, { "id": 22596, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -438017,17 +325032,12 @@ }, { "id": 22597, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -438035,17 +325045,12 @@ }, { "id": 22598, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -438053,17 +325058,12 @@ }, { "id": 22599, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -438072,17 +325072,12 @@ }, { "id": 22600, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -438091,17 +325086,12 @@ }, { "id": 22601, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -438110,17 +325100,12 @@ }, { "id": 22602, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -438129,17 +325114,12 @@ }, { "id": 22603, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -438147,17 +325127,12 @@ }, { "id": 22604, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -438165,17 +325140,12 @@ }, { "id": 22605, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -438183,17 +325153,12 @@ }, { "id": 22606, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -438233,45 +325198,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 22610, "states": [ { "id": 22607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 22608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438280,17 +325235,12 @@ }, { "id": 22609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438299,34 +325249,24 @@ }, { "id": 22610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 22611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438335,17 +325275,12 @@ }, { "id": 22612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438354,115 +325289,80 @@ }, { "id": 22613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 22614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 22617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 22619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -438470,17 +325370,12 @@ }, { "id": 22620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438490,17 +325385,12 @@ }, { "id": 22621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438510,17 +325400,12 @@ }, { "id": 22622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -438528,17 +325413,12 @@ }, { "id": 22623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438548,17 +325428,12 @@ }, { "id": 22624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438568,34 +325443,24 @@ }, { "id": 22625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438603,17 +325468,12 @@ }, { "id": 22627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438621,34 +325481,24 @@ }, { "id": 22628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438656,17 +325506,12 @@ }, { "id": 22630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438674,17 +325519,12 @@ }, { "id": 22631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -438692,17 +325532,12 @@ }, { "id": 22632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438712,17 +325547,12 @@ }, { "id": 22633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438732,17 +325562,12 @@ }, { "id": 22634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -438750,17 +325575,12 @@ }, { "id": 22635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438770,17 +325590,12 @@ }, { "id": 22636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438790,34 +325605,24 @@ }, { "id": 22637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438825,17 +325630,12 @@ }, { "id": 22639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438843,34 +325643,24 @@ }, { "id": 22640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 22641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438878,17 +325668,12 @@ }, { "id": 22642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -438896,17 +325681,12 @@ }, { "id": 22643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -438914,17 +325694,12 @@ }, { "id": 22644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438934,17 +325709,12 @@ }, { "id": 22645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438954,17 +325724,12 @@ }, { "id": 22646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -438972,17 +325737,12 @@ }, { "id": 22647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -438992,17 +325752,12 @@ }, { "id": 22648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439012,34 +325767,24 @@ }, { "id": 22649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439047,17 +325792,12 @@ }, { "id": 22651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439065,34 +325805,24 @@ }, { "id": 22652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439100,17 +325830,12 @@ }, { "id": 22654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439118,17 +325843,12 @@ }, { "id": 22655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -439137,17 +325857,12 @@ }, { "id": 22656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439158,17 +325873,12 @@ }, { "id": 22657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439179,17 +325889,12 @@ }, { "id": 22658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -439198,17 +325903,12 @@ }, { "id": 22659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439219,17 +325919,12 @@ }, { "id": 22660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439240,34 +325935,24 @@ }, { "id": 22661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439276,17 +325961,12 @@ }, { "id": 22663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439295,34 +325975,24 @@ }, { "id": 22664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439331,17 +326001,12 @@ }, { "id": 22666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439350,17 +326015,12 @@ }, { "id": 22667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -439369,17 +326029,12 @@ }, { "id": 22668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439390,17 +326045,12 @@ }, { "id": 22669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439411,17 +326061,12 @@ }, { "id": 22670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -439430,17 +326075,12 @@ }, { "id": 22671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439451,17 +326091,12 @@ }, { "id": 22672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439472,34 +326107,24 @@ }, { "id": 22673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439508,17 +326133,12 @@ }, { "id": 22675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439527,34 +326147,24 @@ }, { "id": 22676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439563,17 +326173,12 @@ }, { "id": 22678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439582,17 +326187,12 @@ }, { "id": 22679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -439600,17 +326200,12 @@ }, { "id": 22680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439620,17 +326215,12 @@ }, { "id": 22681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439640,17 +326230,12 @@ }, { "id": 22682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -439658,17 +326243,12 @@ }, { "id": 22683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439678,17 +326258,12 @@ }, { "id": 22684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439698,34 +326273,24 @@ }, { "id": 22685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439733,17 +326298,12 @@ }, { "id": 22687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439751,34 +326311,24 @@ }, { "id": 22688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 22689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439786,17 +326336,12 @@ }, { "id": 22690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -439804,17 +326349,12 @@ }, { "id": 22691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -439823,17 +326363,12 @@ }, { "id": 22692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439844,17 +326379,12 @@ }, { "id": 22693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439865,17 +326395,12 @@ }, { "id": 22694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -439884,17 +326409,12 @@ }, { "id": 22695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439905,17 +326425,12 @@ }, { "id": 22696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -439926,34 +326441,24 @@ }, { "id": 22697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439962,17 +326467,12 @@ }, { "id": 22699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -439981,34 +326481,24 @@ }, { "id": 22700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -440017,17 +326507,12 @@ }, { "id": 22702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -440036,17 +326521,12 @@ }, { "id": 22703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -440055,17 +326535,12 @@ }, { "id": 22704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -440076,17 +326551,12 @@ }, { "id": 22705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -440097,17 +326567,12 @@ }, { "id": 22706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -440116,17 +326581,12 @@ }, { "id": 22707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -440137,17 +326597,12 @@ }, { "id": 22708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -440158,34 +326613,24 @@ }, { "id": 22709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -440194,17 +326639,12 @@ }, { "id": 22711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -440213,34 +326653,24 @@ }, { "id": 22712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 22713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -440249,17 +326679,12 @@ }, { "id": 22714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -440268,17 +326693,12 @@ }, { "id": 22715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -440286,17 +326706,12 @@ }, { "id": 22716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440305,17 +326720,12 @@ }, { "id": 22717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440324,17 +326734,12 @@ }, { "id": 22718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -440342,17 +326747,12 @@ }, { "id": 22719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440361,17 +326761,12 @@ }, { "id": 22720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440380,119 +326775,84 @@ }, { "id": 22721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -440501,17 +326861,12 @@ }, { "id": 22728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440521,17 +326876,12 @@ }, { "id": 22729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440541,17 +326891,12 @@ }, { "id": 22730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -440560,17 +326905,12 @@ }, { "id": 22731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440580,17 +326920,12 @@ }, { "id": 22732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440600,17 +326935,12 @@ }, { "id": 22733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -440618,17 +326948,12 @@ }, { "id": 22734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440636,17 +326961,12 @@ }, { "id": 22735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440654,17 +326974,12 @@ }, { "id": 22736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -440672,17 +326987,12 @@ }, { "id": 22737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440690,17 +327000,12 @@ }, { "id": 22738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440708,17 +327013,12 @@ }, { "id": 22739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -440727,17 +327027,12 @@ }, { "id": 22740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440747,17 +327042,12 @@ }, { "id": 22741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440767,17 +327057,12 @@ }, { "id": 22742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -440786,17 +327071,12 @@ }, { "id": 22743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440806,17 +327086,12 @@ }, { "id": 22744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440826,17 +327101,12 @@ }, { "id": 22745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -440844,17 +327114,12 @@ }, { "id": 22746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440862,17 +327127,12 @@ }, { "id": 22747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440880,17 +327140,12 @@ }, { "id": 22748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -440898,17 +327153,12 @@ }, { "id": 22749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440916,17 +327166,12 @@ }, { "id": 22750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -440934,17 +327179,12 @@ }, { "id": 22751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -440953,17 +327193,12 @@ }, { "id": 22752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440973,17 +327208,12 @@ }, { "id": 22753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -440993,17 +327223,12 @@ }, { "id": 22754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441012,17 +327237,12 @@ }, { "id": 22755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441032,17 +327252,12 @@ }, { "id": 22756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441052,17 +327267,12 @@ }, { "id": 22757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -441070,17 +327280,12 @@ }, { "id": 22758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441088,17 +327293,12 @@ }, { "id": 22759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441106,17 +327306,12 @@ }, { "id": 22760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -441124,17 +327319,12 @@ }, { "id": 22761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441142,17 +327332,12 @@ }, { "id": 22762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441160,17 +327345,12 @@ }, { "id": 22763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441180,17 +327360,12 @@ }, { "id": 22764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441201,17 +327376,12 @@ }, { "id": 22765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441222,17 +327392,12 @@ }, { "id": 22766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441242,17 +327407,12 @@ }, { "id": 22767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441263,17 +327423,12 @@ }, { "id": 22768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441284,17 +327439,12 @@ }, { "id": 22769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -441302,17 +327452,12 @@ }, { "id": 22770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441321,17 +327466,12 @@ }, { "id": 22771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441340,17 +327480,12 @@ }, { "id": 22772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -441358,17 +327493,12 @@ }, { "id": 22773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441377,17 +327507,12 @@ }, { "id": 22774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441396,17 +327521,12 @@ }, { "id": 22775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441416,17 +327536,12 @@ }, { "id": 22776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441437,17 +327552,12 @@ }, { "id": 22777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441458,17 +327568,12 @@ }, { "id": 22778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441478,17 +327583,12 @@ }, { "id": 22779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441499,17 +327599,12 @@ }, { "id": 22780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441520,17 +327615,12 @@ }, { "id": 22781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -441538,17 +327628,12 @@ }, { "id": 22782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441557,17 +327642,12 @@ }, { "id": 22783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441576,17 +327656,12 @@ }, { "id": 22784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -441594,17 +327669,12 @@ }, { "id": 22785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441613,17 +327683,12 @@ }, { "id": 22786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -441632,17 +327697,12 @@ }, { "id": 22787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441651,17 +327711,12 @@ }, { "id": 22788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441671,17 +327726,12 @@ }, { "id": 22789, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441691,17 +327741,12 @@ }, { "id": 22790, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441710,17 +327755,12 @@ }, { "id": 22791, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441730,17 +327770,12 @@ }, { "id": 22792, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441750,17 +327785,12 @@ }, { "id": 22793, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -441768,17 +327798,12 @@ }, { "id": 22794, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441786,17 +327811,12 @@ }, { "id": 22795, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441804,17 +327824,12 @@ }, { "id": 22796, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -441822,17 +327837,12 @@ }, { "id": 22797, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441840,17 +327850,12 @@ }, { "id": 22798, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -441858,17 +327863,12 @@ }, { "id": 22799, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441878,17 +327878,12 @@ }, { "id": 22800, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441899,17 +327894,12 @@ }, { "id": 22801, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441920,17 +327910,12 @@ }, { "id": 22802, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -441940,17 +327925,12 @@ }, { "id": 22803, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441961,17 +327941,12 @@ }, { "id": 22804, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -441982,17 +327957,12 @@ }, { "id": 22805, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -442000,17 +327970,12 @@ }, { "id": 22806, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442019,17 +327984,12 @@ }, { "id": 22807, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442038,17 +327998,12 @@ }, { "id": 22808, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -442056,17 +328011,12 @@ }, { "id": 22809, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442075,17 +328025,12 @@ }, { "id": 22810, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442094,17 +328039,12 @@ }, { "id": 22811, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -442114,17 +328054,12 @@ }, { "id": 22812, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442135,17 +328070,12 @@ }, { "id": 22813, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442156,17 +328086,12 @@ }, { "id": 22814, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -442176,17 +328101,12 @@ }, { "id": 22815, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442197,17 +328117,12 @@ }, { "id": 22816, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442218,17 +328133,12 @@ }, { "id": 22817, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -442236,17 +328146,12 @@ }, { "id": 22818, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442255,17 +328160,12 @@ }, { "id": 22819, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442274,17 +328174,12 @@ }, { "id": 22820, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -442292,17 +328187,12 @@ }, { "id": 22821, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442311,17 +328201,12 @@ }, { "id": 22822, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -442330,17 +328215,12 @@ }, { "id": 22823, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -442348,17 +328228,12 @@ }, { "id": 22824, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442367,17 +328242,12 @@ }, { "id": 22825, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442386,17 +328256,12 @@ }, { "id": 22826, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -442404,17 +328269,12 @@ }, { "id": 22827, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442423,17 +328283,12 @@ }, { "id": 22828, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442442,119 +328297,84 @@ }, { "id": 22829, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22830, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22831, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22832, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 22833, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22834, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 22835, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -442563,17 +328383,12 @@ }, { "id": 22836, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442583,17 +328398,12 @@ }, { "id": 22837, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442603,17 +328413,12 @@ }, { "id": 22838, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -442622,17 +328427,12 @@ }, { "id": 22839, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442642,17 +328442,12 @@ }, { "id": 22840, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442662,17 +328457,12 @@ }, { "id": 22841, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -442680,17 +328470,12 @@ }, { "id": 22842, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442698,17 +328483,12 @@ }, { "id": 22843, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442716,17 +328496,12 @@ }, { "id": 22844, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -442734,17 +328509,12 @@ }, { "id": 22845, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442752,17 +328522,12 @@ }, { "id": 22846, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442770,17 +328535,12 @@ }, { "id": 22847, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -442789,17 +328549,12 @@ }, { "id": 22848, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442809,17 +328564,12 @@ }, { "id": 22849, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442829,17 +328579,12 @@ }, { "id": 22850, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -442848,17 +328593,12 @@ }, { "id": 22851, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442868,17 +328608,12 @@ }, { "id": 22852, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -442888,17 +328623,12 @@ }, { "id": 22853, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -442906,17 +328636,12 @@ }, { "id": 22854, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442924,17 +328649,12 @@ }, { "id": 22855, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442942,17 +328662,12 @@ }, { "id": 22856, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -442960,17 +328675,12 @@ }, { "id": 22857, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442978,17 +328688,12 @@ }, { "id": 22858, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -442996,17 +328701,12 @@ }, { "id": 22859, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443015,17 +328715,12 @@ }, { "id": 22860, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443035,17 +328730,12 @@ }, { "id": 22861, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443055,17 +328745,12 @@ }, { "id": 22862, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443074,17 +328759,12 @@ }, { "id": 22863, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443094,17 +328774,12 @@ }, { "id": 22864, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443114,17 +328789,12 @@ }, { "id": 22865, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -443132,17 +328802,12 @@ }, { "id": 22866, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443150,17 +328815,12 @@ }, { "id": 22867, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443168,17 +328828,12 @@ }, { "id": 22868, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -443186,17 +328841,12 @@ }, { "id": 22869, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443204,17 +328854,12 @@ }, { "id": 22870, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443222,17 +328867,12 @@ }, { "id": 22871, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443242,17 +328882,12 @@ }, { "id": 22872, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443263,17 +328898,12 @@ }, { "id": 22873, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443284,17 +328914,12 @@ }, { "id": 22874, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443304,17 +328929,12 @@ }, { "id": 22875, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443325,17 +328945,12 @@ }, { "id": 22876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443346,17 +328961,12 @@ }, { "id": 22877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -443364,17 +328974,12 @@ }, { "id": 22878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443383,17 +328988,12 @@ }, { "id": 22879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443402,17 +329002,12 @@ }, { "id": 22880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -443420,17 +329015,12 @@ }, { "id": 22881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443439,17 +329029,12 @@ }, { "id": 22882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443458,17 +329043,12 @@ }, { "id": 22883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443478,17 +329058,12 @@ }, { "id": 22884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443499,17 +329074,12 @@ }, { "id": 22885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443520,17 +329090,12 @@ }, { "id": 22886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443540,17 +329105,12 @@ }, { "id": 22887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443561,17 +329121,12 @@ }, { "id": 22888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443582,17 +329137,12 @@ }, { "id": 22889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -443600,17 +329150,12 @@ }, { "id": 22890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443619,17 +329164,12 @@ }, { "id": 22891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443638,17 +329178,12 @@ }, { "id": 22892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -443656,17 +329191,12 @@ }, { "id": 22893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443675,17 +329205,12 @@ }, { "id": 22894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -443694,17 +329219,12 @@ }, { "id": 22895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443713,17 +329233,12 @@ }, { "id": 22896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443733,17 +329248,12 @@ }, { "id": 22897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443753,17 +329263,12 @@ }, { "id": 22898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443772,17 +329277,12 @@ }, { "id": 22899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443792,17 +329292,12 @@ }, { "id": 22900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443812,17 +329307,12 @@ }, { "id": 22901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -443830,17 +329320,12 @@ }, { "id": 22902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443848,17 +329333,12 @@ }, { "id": 22903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443866,17 +329346,12 @@ }, { "id": 22904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -443884,17 +329359,12 @@ }, { "id": 22905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443902,17 +329372,12 @@ }, { "id": 22906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -443920,17 +329385,12 @@ }, { "id": 22907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -443940,17 +329400,12 @@ }, { "id": 22908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443961,17 +329416,12 @@ }, { "id": 22909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -443982,17 +329432,12 @@ }, { "id": 22910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -444002,17 +329447,12 @@ }, { "id": 22911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -444023,17 +329463,12 @@ }, { "id": 22912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -444044,17 +329479,12 @@ }, { "id": 22913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -444062,17 +329492,12 @@ }, { "id": 22914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444081,17 +329506,12 @@ }, { "id": 22915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444100,17 +329520,12 @@ }, { "id": 22916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -444118,17 +329533,12 @@ }, { "id": 22917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444137,17 +329547,12 @@ }, { "id": 22918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444156,17 +329561,12 @@ }, { "id": 22919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -444176,17 +329576,12 @@ }, { "id": 22920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -444197,17 +329592,12 @@ }, { "id": 22921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -444218,17 +329608,12 @@ }, { "id": 22922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -444238,17 +329623,12 @@ }, { "id": 22923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -444259,17 +329639,12 @@ }, { "id": 22924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -444280,17 +329655,12 @@ }, { "id": 22925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -444298,17 +329668,12 @@ }, { "id": 22926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444317,17 +329682,12 @@ }, { "id": 22927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444336,17 +329696,12 @@ }, { "id": 22928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -444354,17 +329709,12 @@ }, { "id": 22929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444373,17 +329723,12 @@ }, { "id": 22930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -444428,17 +329773,12 @@ "states": [ { "id": 22931, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -444481,17 +329821,12 @@ "states": [ { "id": 22932, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -444544,109 +329879,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 22936, "states": [ { "id": 22933, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 22934, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 22935, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 22936, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 22937, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 22938, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -444685,26 +329990,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 22950, "states": [ { "id": 22939, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -444712,17 +330012,12 @@ }, { "id": 22940, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -444730,17 +330025,12 @@ }, { "id": 22941, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -444749,17 +330039,12 @@ }, { "id": 22942, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -444768,17 +330053,12 @@ }, { "id": 22943, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -444787,17 +330067,12 @@ }, { "id": 22944, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -444806,17 +330081,12 @@ }, { "id": 22945, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -444825,17 +330095,12 @@ }, { "id": 22946, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -444844,17 +330109,12 @@ }, { "id": 22947, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -444863,17 +330123,12 @@ }, { "id": 22948, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -444882,17 +330137,12 @@ }, { "id": 22949, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -444900,17 +330150,12 @@ }, { "id": 22950, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -444918,17 +330163,12 @@ }, { "id": 22951, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -444937,17 +330177,12 @@ }, { "id": 22952, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -444956,17 +330191,12 @@ }, { "id": 22953, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -444975,17 +330205,12 @@ }, { "id": 22954, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -444994,17 +330219,12 @@ }, { "id": 22955, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -445012,17 +330232,12 @@ }, { "id": 22956, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -445030,17 +330245,12 @@ }, { "id": 22957, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -445048,17 +330258,12 @@ }, { "id": 22958, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -445066,17 +330271,12 @@ }, { "id": 22959, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -445084,17 +330284,12 @@ }, { "id": 22960, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -445102,17 +330297,12 @@ }, { "id": 22961, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -445121,17 +330311,12 @@ }, { "id": 22962, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -445140,17 +330325,12 @@ }, { "id": 22963, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -445159,17 +330339,12 @@ }, { "id": 22964, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -445178,17 +330353,12 @@ }, { "id": 22965, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -445197,17 +330367,12 @@ }, { "id": 22966, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -445216,17 +330381,12 @@ }, { "id": 22967, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -445235,17 +330395,12 @@ }, { "id": 22968, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -445254,17 +330409,12 @@ }, { "id": 22969, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -445272,17 +330422,12 @@ }, { "id": 22970, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -445290,17 +330435,12 @@ }, { "id": 22971, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -445309,17 +330449,12 @@ }, { "id": 22972, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -445328,17 +330463,12 @@ }, { "id": 22973, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -445347,17 +330477,12 @@ }, { "id": 22974, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -445366,17 +330491,12 @@ }, { "id": 22975, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -445384,17 +330504,12 @@ }, { "id": 22976, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -445402,17 +330517,12 @@ }, { "id": 22977, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -445420,17 +330530,12 @@ }, { "id": 22978, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -445438,17 +330543,12 @@ }, { "id": 22979, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -445456,17 +330556,12 @@ }, { "id": 22980, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -445474,17 +330569,12 @@ }, { "id": 22981, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -445493,17 +330583,12 @@ }, { "id": 22982, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -445512,17 +330597,12 @@ }, { "id": 22983, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -445531,17 +330611,12 @@ }, { "id": 22984, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -445550,17 +330625,12 @@ }, { "id": 22985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -445569,17 +330639,12 @@ }, { "id": 22986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -445588,17 +330653,12 @@ }, { "id": 22987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -445607,17 +330667,12 @@ }, { "id": 22988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -445626,17 +330681,12 @@ }, { "id": 22989, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -445644,17 +330694,12 @@ }, { "id": 22990, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -445662,17 +330707,12 @@ }, { "id": 22991, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -445681,17 +330721,12 @@ }, { "id": 22992, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -445700,17 +330735,12 @@ }, { "id": 22993, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -445719,17 +330749,12 @@ }, { "id": 22994, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -445738,17 +330763,12 @@ }, { "id": 22995, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -445756,17 +330776,12 @@ }, { "id": 22996, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -445774,17 +330789,12 @@ }, { "id": 22997, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -445792,17 +330802,12 @@ }, { "id": 22998, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -445810,17 +330815,12 @@ }, { "id": 22999, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -445828,17 +330828,12 @@ }, { "id": 23000, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -445846,17 +330841,12 @@ }, { "id": 23001, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -445865,17 +330855,12 @@ }, { "id": 23002, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -445884,17 +330869,12 @@ }, { "id": 23003, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -445903,17 +330883,12 @@ }, { "id": 23004, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -445922,17 +330897,12 @@ }, { "id": 23005, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -445941,17 +330911,12 @@ }, { "id": 23006, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -445960,17 +330925,12 @@ }, { "id": 23007, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -445979,17 +330939,12 @@ }, { "id": 23008, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -445998,17 +330953,12 @@ }, { "id": 23009, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -446016,17 +330966,12 @@ }, { "id": 23010, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -446034,17 +330979,12 @@ }, { "id": 23011, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -446053,17 +330993,12 @@ }, { "id": 23012, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -446072,17 +331007,12 @@ }, { "id": 23013, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -446091,17 +331021,12 @@ }, { "id": 23014, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -446110,17 +331035,12 @@ }, { "id": 23015, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -446128,17 +331048,12 @@ }, { "id": 23016, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -446146,17 +331061,12 @@ }, { "id": 23017, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -446164,17 +331074,12 @@ }, { "id": 23018, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -446214,45 +331119,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 23022, "states": [ { "id": 23019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 23020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446261,17 +331156,12 @@ }, { "id": 23021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446280,34 +331170,24 @@ }, { "id": 23022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 23023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446316,17 +331196,12 @@ }, { "id": 23024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446335,115 +331210,80 @@ }, { "id": 23025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 23027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 23028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 23030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 23031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -446451,17 +331291,12 @@ }, { "id": 23032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446471,17 +331306,12 @@ }, { "id": 23033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446491,17 +331321,12 @@ }, { "id": 23034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -446509,17 +331334,12 @@ }, { "id": 23035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446529,17 +331349,12 @@ }, { "id": 23036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446549,34 +331364,24 @@ }, { "id": 23037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 23038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446584,17 +331389,12 @@ }, { "id": 23039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446602,34 +331402,24 @@ }, { "id": 23040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 23041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446637,17 +331427,12 @@ }, { "id": 23042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446655,17 +331440,12 @@ }, { "id": 23043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -446673,17 +331453,12 @@ }, { "id": 23044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446693,17 +331468,12 @@ }, { "id": 23045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446713,17 +331483,12 @@ }, { "id": 23046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -446731,17 +331496,12 @@ }, { "id": 23047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446751,17 +331511,12 @@ }, { "id": 23048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446771,34 +331526,24 @@ }, { "id": 23049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 23050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446806,17 +331551,12 @@ }, { "id": 23051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446824,34 +331564,24 @@ }, { "id": 23052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 23053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446859,17 +331589,12 @@ }, { "id": 23054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -446877,17 +331602,12 @@ }, { "id": 23055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -446895,17 +331615,12 @@ }, { "id": 23056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446915,17 +331630,12 @@ }, { "id": 23057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446935,17 +331645,12 @@ }, { "id": 23058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -446953,17 +331658,12 @@ }, { "id": 23059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446973,17 +331673,12 @@ }, { "id": 23060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -446993,34 +331688,24 @@ }, { "id": 23061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 23062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447028,17 +331713,12 @@ }, { "id": 23063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447046,34 +331726,24 @@ }, { "id": 23064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 23065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447081,17 +331751,12 @@ }, { "id": 23066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447099,17 +331764,12 @@ }, { "id": 23067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -447118,17 +331778,12 @@ }, { "id": 23068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447139,17 +331794,12 @@ }, { "id": 23069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447160,17 +331810,12 @@ }, { "id": 23070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -447179,17 +331824,12 @@ }, { "id": 23071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447200,17 +331840,12 @@ }, { "id": 23072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447221,34 +331856,24 @@ }, { "id": 23073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447257,17 +331882,12 @@ }, { "id": 23075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447276,34 +331896,24 @@ }, { "id": 23076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447312,17 +331922,12 @@ }, { "id": 23078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447331,17 +331936,12 @@ }, { "id": 23079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -447350,17 +331950,12 @@ }, { "id": 23080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447371,17 +331966,12 @@ }, { "id": 23081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447392,17 +331982,12 @@ }, { "id": 23082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -447411,17 +331996,12 @@ }, { "id": 23083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447432,17 +332012,12 @@ }, { "id": 23084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447453,34 +332028,24 @@ }, { "id": 23085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447489,17 +332054,12 @@ }, { "id": 23087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447508,34 +332068,24 @@ }, { "id": 23088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447544,17 +332094,12 @@ }, { "id": 23090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447563,17 +332108,12 @@ }, { "id": 23091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -447581,17 +332121,12 @@ }, { "id": 23092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447601,17 +332136,12 @@ }, { "id": 23093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447621,17 +332151,12 @@ }, { "id": 23094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -447639,17 +332164,12 @@ }, { "id": 23095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447659,17 +332179,12 @@ }, { "id": 23096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447679,34 +332194,24 @@ }, { "id": 23097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 23098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447714,17 +332219,12 @@ }, { "id": 23099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447732,34 +332232,24 @@ }, { "id": 23100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 23101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447767,17 +332257,12 @@ }, { "id": 23102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -447785,17 +332270,12 @@ }, { "id": 23103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -447804,17 +332284,12 @@ }, { "id": 23104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447825,17 +332300,12 @@ }, { "id": 23105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447846,17 +332316,12 @@ }, { "id": 23106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -447865,17 +332330,12 @@ }, { "id": 23107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447886,17 +332346,12 @@ }, { "id": 23108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -447907,34 +332362,24 @@ }, { "id": 23109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447943,17 +332388,12 @@ }, { "id": 23111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447962,34 +332402,24 @@ }, { "id": 23112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -447998,17 +332428,12 @@ }, { "id": 23114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -448017,17 +332442,12 @@ }, { "id": 23115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -448036,17 +332456,12 @@ }, { "id": 23116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -448057,17 +332472,12 @@ }, { "id": 23117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -448078,17 +332488,12 @@ }, { "id": 23118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -448097,17 +332502,12 @@ }, { "id": 23119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -448118,17 +332518,12 @@ }, { "id": 23120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -448139,34 +332534,24 @@ }, { "id": 23121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -448175,17 +332560,12 @@ }, { "id": 23123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -448194,34 +332574,24 @@ }, { "id": 23124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 23125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -448230,17 +332600,12 @@ }, { "id": 23126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -448249,17 +332614,12 @@ }, { "id": 23127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -448267,17 +332627,12 @@ }, { "id": 23128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448286,17 +332641,12 @@ }, { "id": 23129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448305,17 +332655,12 @@ }, { "id": 23130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -448323,17 +332668,12 @@ }, { "id": 23131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448342,17 +332682,12 @@ }, { "id": 23132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448361,119 +332696,84 @@ }, { "id": 23133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 23134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 23137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -448482,17 +332782,12 @@ }, { "id": 23140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448502,17 +332797,12 @@ }, { "id": 23141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448522,17 +332812,12 @@ }, { "id": 23142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -448541,17 +332826,12 @@ }, { "id": 23143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448561,17 +332841,12 @@ }, { "id": 23144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448581,17 +332856,12 @@ }, { "id": 23145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -448599,17 +332869,12 @@ }, { "id": 23146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448617,17 +332882,12 @@ }, { "id": 23147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448635,17 +332895,12 @@ }, { "id": 23148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -448653,17 +332908,12 @@ }, { "id": 23149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448671,17 +332921,12 @@ }, { "id": 23150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448689,17 +332934,12 @@ }, { "id": 23151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -448708,17 +332948,12 @@ }, { "id": 23152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448728,17 +332963,12 @@ }, { "id": 23153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448748,17 +332978,12 @@ }, { "id": 23154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -448767,17 +332992,12 @@ }, { "id": 23155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448787,17 +333007,12 @@ }, { "id": 23156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448807,17 +333022,12 @@ }, { "id": 23157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -448825,17 +333035,12 @@ }, { "id": 23158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448843,17 +333048,12 @@ }, { "id": 23159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448861,17 +333061,12 @@ }, { "id": 23160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -448879,17 +333074,12 @@ }, { "id": 23161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448897,17 +333087,12 @@ }, { "id": 23162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -448915,17 +333100,12 @@ }, { "id": 23163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -448934,17 +333114,12 @@ }, { "id": 23164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448954,17 +333129,12 @@ }, { "id": 23165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -448974,17 +333144,12 @@ }, { "id": 23166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -448993,17 +333158,12 @@ }, { "id": 23167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449013,17 +333173,12 @@ }, { "id": 23168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449033,17 +333188,12 @@ }, { "id": 23169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -449051,17 +333201,12 @@ }, { "id": 23170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449069,17 +333214,12 @@ }, { "id": 23171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449087,17 +333227,12 @@ }, { "id": 23172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -449105,17 +333240,12 @@ }, { "id": 23173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449123,17 +333253,12 @@ }, { "id": 23174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449141,17 +333266,12 @@ }, { "id": 23175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449161,17 +333281,12 @@ }, { "id": 23176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449182,17 +333297,12 @@ }, { "id": 23177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449203,17 +333313,12 @@ }, { "id": 23178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449223,17 +333328,12 @@ }, { "id": 23179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449244,17 +333344,12 @@ }, { "id": 23180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449265,17 +333360,12 @@ }, { "id": 23181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -449283,17 +333373,12 @@ }, { "id": 23182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449302,17 +333387,12 @@ }, { "id": 23183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449321,17 +333401,12 @@ }, { "id": 23184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -449339,17 +333414,12 @@ }, { "id": 23185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449358,17 +333428,12 @@ }, { "id": 23186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449377,17 +333442,12 @@ }, { "id": 23187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449397,17 +333457,12 @@ }, { "id": 23188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449418,17 +333473,12 @@ }, { "id": 23189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449439,17 +333489,12 @@ }, { "id": 23190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449459,17 +333504,12 @@ }, { "id": 23191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449480,17 +333520,12 @@ }, { "id": 23192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449501,17 +333536,12 @@ }, { "id": 23193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -449519,17 +333549,12 @@ }, { "id": 23194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449538,17 +333563,12 @@ }, { "id": 23195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449557,17 +333577,12 @@ }, { "id": 23196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -449575,17 +333590,12 @@ }, { "id": 23197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449594,17 +333604,12 @@ }, { "id": 23198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -449613,17 +333618,12 @@ }, { "id": 23199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449632,17 +333632,12 @@ }, { "id": 23200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449652,17 +333647,12 @@ }, { "id": 23201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449672,17 +333662,12 @@ }, { "id": 23202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449691,17 +333676,12 @@ }, { "id": 23203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449711,17 +333691,12 @@ }, { "id": 23204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449731,17 +333706,12 @@ }, { "id": 23205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -449749,17 +333719,12 @@ }, { "id": 23206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449767,17 +333732,12 @@ }, { "id": 23207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449785,17 +333745,12 @@ }, { "id": 23208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -449803,17 +333758,12 @@ }, { "id": 23209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449821,17 +333771,12 @@ }, { "id": 23210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -449839,17 +333784,12 @@ }, { "id": 23211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449859,17 +333799,12 @@ }, { "id": 23212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449880,17 +333815,12 @@ }, { "id": 23213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449901,17 +333831,12 @@ }, { "id": 23214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -449921,17 +333846,12 @@ }, { "id": 23215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449942,17 +333862,12 @@ }, { "id": 23216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -449963,17 +333878,12 @@ }, { "id": 23217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -449981,17 +333891,12 @@ }, { "id": 23218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450000,17 +333905,12 @@ }, { "id": 23219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450019,17 +333919,12 @@ }, { "id": 23220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -450037,17 +333932,12 @@ }, { "id": 23221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450056,17 +333946,12 @@ }, { "id": 23222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450075,17 +333960,12 @@ }, { "id": 23223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -450095,17 +333975,12 @@ }, { "id": 23224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450116,17 +333991,12 @@ }, { "id": 23225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450137,17 +334007,12 @@ }, { "id": 23226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -450157,17 +334022,12 @@ }, { "id": 23227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450178,17 +334038,12 @@ }, { "id": 23228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450199,17 +334054,12 @@ }, { "id": 23229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -450217,17 +334067,12 @@ }, { "id": 23230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450236,17 +334081,12 @@ }, { "id": 23231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450255,17 +334095,12 @@ }, { "id": 23232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -450273,17 +334108,12 @@ }, { "id": 23233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450292,17 +334122,12 @@ }, { "id": 23234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -450311,17 +334136,12 @@ }, { "id": 23235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -450329,17 +334149,12 @@ }, { "id": 23236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450348,17 +334163,12 @@ }, { "id": 23237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450367,17 +334177,12 @@ }, { "id": 23238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -450385,17 +334190,12 @@ }, { "id": 23239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450404,17 +334204,12 @@ }, { "id": 23240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450423,119 +334218,84 @@ }, { "id": 23241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 23242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 23245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 23247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -450544,17 +334304,12 @@ }, { "id": 23248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450564,17 +334319,12 @@ }, { "id": 23249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450584,17 +334334,12 @@ }, { "id": 23250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -450603,17 +334348,12 @@ }, { "id": 23251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450623,17 +334363,12 @@ }, { "id": 23252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450643,17 +334378,12 @@ }, { "id": 23253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -450661,17 +334391,12 @@ }, { "id": 23254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450679,17 +334404,12 @@ }, { "id": 23255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450697,17 +334417,12 @@ }, { "id": 23256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -450715,17 +334430,12 @@ }, { "id": 23257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450733,17 +334443,12 @@ }, { "id": 23258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450751,17 +334456,12 @@ }, { "id": 23259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -450770,17 +334470,12 @@ }, { "id": 23260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450790,17 +334485,12 @@ }, { "id": 23261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450810,17 +334500,12 @@ }, { "id": 23262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -450829,17 +334514,12 @@ }, { "id": 23263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450849,17 +334529,12 @@ }, { "id": 23264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -450869,17 +334544,12 @@ }, { "id": 23265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -450887,17 +334557,12 @@ }, { "id": 23266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450905,17 +334570,12 @@ }, { "id": 23267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450923,17 +334583,12 @@ }, { "id": 23268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -450941,17 +334596,12 @@ }, { "id": 23269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450959,17 +334609,12 @@ }, { "id": 23270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -450977,17 +334622,12 @@ }, { "id": 23271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -450996,17 +334636,12 @@ }, { "id": 23272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451016,17 +334651,12 @@ }, { "id": 23273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451036,17 +334666,12 @@ }, { "id": 23274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451055,17 +334680,12 @@ }, { "id": 23275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451075,17 +334695,12 @@ }, { "id": 23276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451095,17 +334710,12 @@ }, { "id": 23277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -451113,17 +334723,12 @@ }, { "id": 23278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451131,17 +334736,12 @@ }, { "id": 23279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451149,17 +334749,12 @@ }, { "id": 23280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -451167,17 +334762,12 @@ }, { "id": 23281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451185,17 +334775,12 @@ }, { "id": 23282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451203,17 +334788,12 @@ }, { "id": 23283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451223,17 +334803,12 @@ }, { "id": 23284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451244,17 +334819,12 @@ }, { "id": 23285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451265,17 +334835,12 @@ }, { "id": 23286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451285,17 +334850,12 @@ }, { "id": 23287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451306,17 +334866,12 @@ }, { "id": 23288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451327,17 +334882,12 @@ }, { "id": 23289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -451345,17 +334895,12 @@ }, { "id": 23290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451364,17 +334909,12 @@ }, { "id": 23291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451383,17 +334923,12 @@ }, { "id": 23292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -451401,17 +334936,12 @@ }, { "id": 23293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451420,17 +334950,12 @@ }, { "id": 23294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451439,17 +334964,12 @@ }, { "id": 23295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451459,17 +334979,12 @@ }, { "id": 23296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451480,17 +334995,12 @@ }, { "id": 23297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451501,17 +335011,12 @@ }, { "id": 23298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451521,17 +335026,12 @@ }, { "id": 23299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451542,17 +335042,12 @@ }, { "id": 23300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451563,17 +335058,12 @@ }, { "id": 23301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -451581,17 +335071,12 @@ }, { "id": 23302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451600,17 +335085,12 @@ }, { "id": 23303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451619,17 +335099,12 @@ }, { "id": 23304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -451637,17 +335112,12 @@ }, { "id": 23305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451656,17 +335126,12 @@ }, { "id": 23306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -451675,17 +335140,12 @@ }, { "id": 23307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451694,17 +335154,12 @@ }, { "id": 23308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451714,17 +335169,12 @@ }, { "id": 23309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451734,17 +335184,12 @@ }, { "id": 23310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451753,17 +335198,12 @@ }, { "id": 23311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451773,17 +335213,12 @@ }, { "id": 23312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451793,17 +335228,12 @@ }, { "id": 23313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -451811,17 +335241,12 @@ }, { "id": 23314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451829,17 +335254,12 @@ }, { "id": 23315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451847,17 +335267,12 @@ }, { "id": 23316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -451865,17 +335280,12 @@ }, { "id": 23317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451883,17 +335293,12 @@ }, { "id": 23318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -451901,17 +335306,12 @@ }, { "id": 23319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451921,17 +335321,12 @@ }, { "id": 23320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451942,17 +335337,12 @@ }, { "id": 23321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -451963,17 +335353,12 @@ }, { "id": 23322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -451983,17 +335368,12 @@ }, { "id": 23323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -452004,17 +335384,12 @@ }, { "id": 23324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -452025,17 +335400,12 @@ }, { "id": 23325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -452043,17 +335413,12 @@ }, { "id": 23326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452062,17 +335427,12 @@ }, { "id": 23327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452081,17 +335441,12 @@ }, { "id": 23328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -452099,17 +335454,12 @@ }, { "id": 23329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452118,17 +335468,12 @@ }, { "id": 23330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452137,17 +335482,12 @@ }, { "id": 23331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -452157,17 +335497,12 @@ }, { "id": 23332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -452178,17 +335513,12 @@ }, { "id": 23333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -452199,17 +335529,12 @@ }, { "id": 23334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -452219,17 +335544,12 @@ }, { "id": 23335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -452240,17 +335560,12 @@ }, { "id": 23336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -452261,17 +335576,12 @@ }, { "id": 23337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -452279,17 +335589,12 @@ }, { "id": 23338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452298,17 +335603,12 @@ }, { "id": 23339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452317,17 +335617,12 @@ }, { "id": 23340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -452335,17 +335630,12 @@ }, { "id": 23341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452354,17 +335644,12 @@ }, { "id": 23342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -452409,17 +335694,12 @@ "states": [ { "id": 23343, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -452462,17 +335742,12 @@ "states": [ { "id": 23344, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 0.75, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -452515,16 +335790,11 @@ "states": [ { "id": 23345, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HAT", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -452550,16 +335820,11 @@ "states": [ { "id": 23346, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.25, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -452608,25 +335873,20 @@ ] }, "properties": [ - 268053108, - -725648727, - 795783032 + -376795061, + -286744339, + 989206919 ], "default_state_id": 23348, "states": [ { "id": 23347, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452634,17 +335894,12 @@ }, { "id": 23348, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452652,17 +335907,12 @@ }, { "id": 23349, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452670,17 +335920,12 @@ }, { "id": 23350, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452688,17 +335933,12 @@ }, { "id": 23351, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452706,17 +335946,12 @@ }, { "id": 23352, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452724,17 +335959,12 @@ }, { "id": 23353, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452742,17 +335972,12 @@ }, { "id": 23354, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452760,17 +335985,12 @@ }, { "id": 23355, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452778,17 +335998,12 @@ }, { "id": 23356, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452796,17 +336011,12 @@ }, { "id": 23357, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452814,17 +336024,12 @@ }, { "id": 23358, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452832,17 +336037,12 @@ }, { "id": 23359, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452850,17 +336050,12 @@ }, { "id": 23360, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452868,17 +336063,12 @@ }, { "id": 23361, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452886,17 +336076,12 @@ }, { "id": 23362, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452904,17 +336089,12 @@ }, { "id": 23363, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452922,17 +336102,12 @@ }, { "id": 23364, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452940,17 +336115,12 @@ }, { "id": 23365, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452958,17 +336128,12 @@ }, { "id": 23366, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452976,17 +336141,12 @@ }, { "id": 23367, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -452994,17 +336154,12 @@ }, { "id": 23368, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453012,17 +336167,12 @@ }, { "id": 23369, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453030,17 +336180,12 @@ }, { "id": 23370, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453048,17 +336193,12 @@ }, { "id": 23371, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453066,17 +336206,12 @@ }, { "id": 23372, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453084,17 +336219,12 @@ }, { "id": 23373, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453102,17 +336232,12 @@ }, { "id": 23374, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453120,17 +336245,12 @@ }, { "id": 23375, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453138,17 +336258,12 @@ }, { "id": 23376, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453156,17 +336271,12 @@ }, { "id": 23377, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453174,17 +336284,12 @@ }, { "id": 23378, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453192,17 +336297,12 @@ }, { "id": 23379, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453210,17 +336310,12 @@ }, { "id": 23380, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453228,17 +336323,12 @@ }, { "id": 23381, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453246,17 +336336,12 @@ }, { "id": 23382, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453264,17 +336349,12 @@ }, { "id": 23383, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453282,17 +336362,12 @@ }, { "id": 23384, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453300,17 +336375,12 @@ }, { "id": 23385, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453318,17 +336388,12 @@ }, { "id": 23386, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453336,17 +336401,12 @@ }, { "id": 23387, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453354,17 +336414,12 @@ }, { "id": 23388, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453372,17 +336427,12 @@ }, { "id": 23389, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453390,17 +336440,12 @@ }, { "id": 23390, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453408,17 +336453,12 @@ }, { "id": 23391, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453426,17 +336466,12 @@ }, { "id": 23392, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453444,17 +336479,12 @@ }, { "id": 23393, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453462,17 +336492,12 @@ }, { "id": 23394, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453480,17 +336505,12 @@ }, { "id": 23395, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453498,17 +336518,12 @@ }, { "id": 23396, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453516,17 +336531,12 @@ }, { "id": 23397, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453534,17 +336544,12 @@ }, { "id": 23398, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453552,17 +336557,12 @@ }, { "id": 23399, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453570,17 +336570,12 @@ }, { "id": 23400, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453588,17 +336583,12 @@ }, { "id": 23401, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453606,17 +336596,12 @@ }, { "id": 23402, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453624,17 +336609,12 @@ }, { "id": 23403, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453642,17 +336622,12 @@ }, { "id": 23404, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453660,17 +336635,12 @@ }, { "id": 23405, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453678,17 +336648,12 @@ }, { "id": 23406, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453696,17 +336661,12 @@ }, { "id": 23407, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453714,17 +336674,12 @@ }, { "id": 23408, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453732,17 +336687,12 @@ }, { "id": 23409, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453750,17 +336700,12 @@ }, { "id": 23410, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453768,17 +336713,12 @@ }, { "id": 23411, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453786,17 +336726,12 @@ }, { "id": 23412, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453804,17 +336739,12 @@ }, { "id": 23413, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453822,17 +336752,12 @@ }, { "id": 23414, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453840,17 +336765,12 @@ }, { "id": 23415, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453858,17 +336778,12 @@ }, { "id": 23416, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453876,17 +336791,12 @@ }, { "id": 23417, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453894,17 +336804,12 @@ }, { "id": 23418, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453912,17 +336817,12 @@ }, { "id": 23419, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453930,17 +336830,12 @@ }, { "id": 23420, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453948,17 +336843,12 @@ }, { "id": 23421, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453966,17 +336856,12 @@ }, { "id": 23422, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -453984,17 +336869,12 @@ }, { "id": 23423, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454002,17 +336882,12 @@ }, { "id": 23424, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454020,17 +336895,12 @@ }, { "id": 23425, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454038,17 +336908,12 @@ }, { "id": 23426, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454056,17 +336921,12 @@ }, { "id": 23427, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454074,17 +336934,12 @@ }, { "id": 23428, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454092,17 +336947,12 @@ }, { "id": 23429, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454110,17 +336960,12 @@ }, { "id": 23430, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454128,17 +336973,12 @@ }, { "id": 23431, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454146,17 +336986,12 @@ }, { "id": 23432, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454164,17 +336999,12 @@ }, { "id": 23433, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454182,17 +337012,12 @@ }, { "id": 23434, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454200,17 +337025,12 @@ }, { "id": 23435, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454218,17 +337038,12 @@ }, { "id": 23436, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454236,17 +337051,12 @@ }, { "id": 23437, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454254,17 +337064,12 @@ }, { "id": 23438, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454272,17 +337077,12 @@ }, { "id": 23439, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454290,17 +337090,12 @@ }, { "id": 23440, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454308,17 +337103,12 @@ }, { "id": 23441, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454326,17 +337116,12 @@ }, { "id": 23442, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454388,26 +337173,21 @@ ] }, "properties": [ - -1870206692, - 268053108, - -725648727, - 795783032 + 1877134791, + -376795061, + -286744339, + 989206919 ], "default_state_id": 23444, "states": [ { "id": 23443, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454415,17 +337195,12 @@ }, { "id": 23444, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454433,17 +337208,12 @@ }, { "id": 23445, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454451,17 +337221,12 @@ }, { "id": 23446, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454469,17 +337234,12 @@ }, { "id": 23447, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454487,17 +337247,12 @@ }, { "id": 23448, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454505,17 +337260,12 @@ }, { "id": 23449, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454523,17 +337273,12 @@ }, { "id": 23450, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454541,17 +337286,12 @@ }, { "id": 23451, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454559,17 +337299,12 @@ }, { "id": 23452, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454577,17 +337312,12 @@ }, { "id": 23453, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454595,17 +337325,12 @@ }, { "id": 23454, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454613,17 +337338,12 @@ }, { "id": 23455, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454631,17 +337351,12 @@ }, { "id": 23456, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454649,17 +337364,12 @@ }, { "id": 23457, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454667,17 +337377,12 @@ }, { "id": 23458, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454685,17 +337390,12 @@ }, { "id": 23459, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454703,17 +337403,12 @@ }, { "id": 23460, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454721,17 +337416,12 @@ }, { "id": 23461, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454739,17 +337429,12 @@ }, { "id": 23462, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454757,17 +337442,12 @@ }, { "id": 23463, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454775,17 +337455,12 @@ }, { "id": 23464, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454793,17 +337468,12 @@ }, { "id": 23465, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454811,17 +337481,12 @@ }, { "id": 23466, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454829,17 +337494,12 @@ }, { "id": 23467, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454847,17 +337507,12 @@ }, { "id": 23468, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454865,17 +337520,12 @@ }, { "id": 23469, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454883,17 +337533,12 @@ }, { "id": 23470, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454901,17 +337546,12 @@ }, { "id": 23471, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454919,17 +337559,12 @@ }, { "id": 23472, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454937,17 +337572,12 @@ }, { "id": 23473, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454955,17 +337585,12 @@ }, { "id": 23474, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454973,17 +337598,12 @@ }, { "id": 23475, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -454991,17 +337611,12 @@ }, { "id": 23476, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455009,17 +337624,12 @@ }, { "id": 23477, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455027,17 +337637,12 @@ }, { "id": 23478, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455045,17 +337650,12 @@ }, { "id": 23479, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455063,17 +337663,12 @@ }, { "id": 23480, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455081,17 +337676,12 @@ }, { "id": 23481, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455099,17 +337689,12 @@ }, { "id": 23482, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455117,17 +337702,12 @@ }, { "id": 23483, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455135,17 +337715,12 @@ }, { "id": 23484, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455153,17 +337728,12 @@ }, { "id": 23485, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455171,17 +337741,12 @@ }, { "id": 23486, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455189,17 +337754,12 @@ }, { "id": 23487, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455207,17 +337767,12 @@ }, { "id": 23488, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455225,17 +337780,12 @@ }, { "id": 23489, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455243,17 +337793,12 @@ }, { "id": 23490, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455261,17 +337806,12 @@ }, { "id": 23491, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455279,17 +337819,12 @@ }, { "id": 23492, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455297,17 +337832,12 @@ }, { "id": 23493, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455315,17 +337845,12 @@ }, { "id": 23494, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455333,17 +337858,12 @@ }, { "id": 23495, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455351,17 +337871,12 @@ }, { "id": 23496, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455369,17 +337884,12 @@ }, { "id": 23497, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455387,17 +337897,12 @@ }, { "id": 23498, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455405,17 +337910,12 @@ }, { "id": 23499, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455423,17 +337923,12 @@ }, { "id": 23500, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455441,17 +337936,12 @@ }, { "id": 23501, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455459,17 +337949,12 @@ }, { "id": 23502, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455477,17 +337962,12 @@ }, { "id": 23503, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455495,17 +337975,12 @@ }, { "id": 23504, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455513,17 +337988,12 @@ }, { "id": 23505, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455531,17 +338001,12 @@ }, { "id": 23506, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455549,17 +338014,12 @@ }, { "id": 23507, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455567,17 +338027,12 @@ }, { "id": 23508, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455585,17 +338040,12 @@ }, { "id": 23509, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455603,17 +338053,12 @@ }, { "id": 23510, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455621,17 +338066,12 @@ }, { "id": 23511, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455639,17 +338079,12 @@ }, { "id": 23512, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455657,17 +338092,12 @@ }, { "id": 23513, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455675,17 +338105,12 @@ }, { "id": 23514, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455693,17 +338118,12 @@ }, { "id": 23515, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455711,17 +338131,12 @@ }, { "id": 23516, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455729,17 +338144,12 @@ }, { "id": 23517, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455747,17 +338157,12 @@ }, { "id": 23518, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455765,17 +338170,12 @@ }, { "id": 23519, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455783,17 +338183,12 @@ }, { "id": 23520, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455801,17 +338196,12 @@ }, { "id": 23521, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455819,17 +338209,12 @@ }, { "id": 23522, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455837,17 +338222,12 @@ }, { "id": 23523, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455855,17 +338235,12 @@ }, { "id": 23524, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455873,17 +338248,12 @@ }, { "id": 23525, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455891,17 +338261,12 @@ }, { "id": 23526, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455909,17 +338274,12 @@ }, { "id": 23527, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455927,17 +338287,12 @@ }, { "id": 23528, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455945,17 +338300,12 @@ }, { "id": 23529, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455963,17 +338313,12 @@ }, { "id": 23530, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455981,17 +338326,12 @@ }, { "id": 23531, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -455999,17 +338339,12 @@ }, { "id": 23532, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456017,17 +338352,12 @@ }, { "id": 23533, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456035,17 +338365,12 @@ }, { "id": 23534, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456053,17 +338378,12 @@ }, { "id": 23535, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456071,17 +338391,12 @@ }, { "id": 23536, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456089,17 +338404,12 @@ }, { "id": 23537, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456107,17 +338417,12 @@ }, { "id": 23538, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456125,17 +338430,12 @@ }, { "id": 23539, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456143,17 +338443,12 @@ }, { "id": 23540, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456161,17 +338456,12 @@ }, { "id": 23541, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456179,17 +338469,12 @@ }, { "id": 23542, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456197,17 +338482,12 @@ }, { "id": 23543, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456215,17 +338495,12 @@ }, { "id": 23544, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456233,17 +338508,12 @@ }, { "id": 23545, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456251,17 +338521,12 @@ }, { "id": 23546, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456269,17 +338534,12 @@ }, { "id": 23547, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456287,17 +338547,12 @@ }, { "id": 23548, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456305,17 +338560,12 @@ }, { "id": 23549, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456323,17 +338573,12 @@ }, { "id": 23550, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456341,17 +338586,12 @@ }, { "id": 23551, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456359,17 +338599,12 @@ }, { "id": 23552, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456377,17 +338612,12 @@ }, { "id": 23553, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456395,17 +338625,12 @@ }, { "id": 23554, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456413,17 +338638,12 @@ }, { "id": 23555, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456431,17 +338651,12 @@ }, { "id": 23556, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456449,17 +338664,12 @@ }, { "id": 23557, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456467,17 +338677,12 @@ }, { "id": 23558, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456485,17 +338690,12 @@ }, { "id": 23559, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456503,17 +338703,12 @@ }, { "id": 23560, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456521,17 +338716,12 @@ }, { "id": 23561, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456539,17 +338729,12 @@ }, { "id": 23562, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456557,17 +338742,12 @@ }, { "id": 23563, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456575,17 +338755,12 @@ }, { "id": 23564, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456593,17 +338768,12 @@ }, { "id": 23565, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456611,17 +338781,12 @@ }, { "id": 23566, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456629,17 +338794,12 @@ }, { "id": 23567, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456647,17 +338807,12 @@ }, { "id": 23568, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456665,17 +338820,12 @@ }, { "id": 23569, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456683,17 +338833,12 @@ }, { "id": 23570, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456701,17 +338846,12 @@ }, { "id": 23571, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456719,17 +338859,12 @@ }, { "id": 23572, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456737,17 +338872,12 @@ }, { "id": 23573, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456755,17 +338885,12 @@ }, { "id": 23574, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456773,17 +338898,12 @@ }, { "id": 23575, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456791,17 +338911,12 @@ }, { "id": 23576, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456809,17 +338924,12 @@ }, { "id": 23577, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456827,17 +338937,12 @@ }, { "id": 23578, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456845,17 +338950,12 @@ }, { "id": 23579, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456863,17 +338963,12 @@ }, { "id": 23580, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456881,17 +338976,12 @@ }, { "id": 23581, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456899,17 +338989,12 @@ }, { "id": 23582, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456917,17 +339002,12 @@ }, { "id": 23583, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456935,17 +339015,12 @@ }, { "id": 23584, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456953,17 +339028,12 @@ }, { "id": 23585, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456971,17 +339041,12 @@ }, { "id": 23586, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -456989,17 +339054,12 @@ }, { "id": 23587, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457007,17 +339067,12 @@ }, { "id": 23588, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457025,17 +339080,12 @@ }, { "id": 23589, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457043,17 +339093,12 @@ }, { "id": 23590, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457061,17 +339106,12 @@ }, { "id": 23591, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457079,17 +339119,12 @@ }, { "id": 23592, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457097,17 +339132,12 @@ }, { "id": 23593, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457115,17 +339145,12 @@ }, { "id": 23594, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457133,17 +339158,12 @@ }, { "id": 23595, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457151,17 +339171,12 @@ }, { "id": 23596, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457169,17 +339184,12 @@ }, { "id": 23597, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457187,17 +339197,12 @@ }, { "id": 23598, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457205,17 +339210,12 @@ }, { "id": 23599, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457223,17 +339223,12 @@ }, { "id": 23600, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457241,17 +339236,12 @@ }, { "id": 23601, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457259,17 +339249,12 @@ }, { "id": 23602, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457277,17 +339262,12 @@ }, { "id": 23603, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457295,17 +339275,12 @@ }, { "id": 23604, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457313,17 +339288,12 @@ }, { "id": 23605, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457331,17 +339301,12 @@ }, { "id": 23606, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457349,17 +339314,12 @@ }, { "id": 23607, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457367,17 +339327,12 @@ }, { "id": 23608, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457385,17 +339340,12 @@ }, { "id": 23609, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457403,17 +339353,12 @@ }, { "id": 23610, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457421,17 +339366,12 @@ }, { "id": 23611, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457439,17 +339379,12 @@ }, { "id": 23612, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457457,17 +339392,12 @@ }, { "id": 23613, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457475,17 +339405,12 @@ }, { "id": 23614, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457493,17 +339418,12 @@ }, { "id": 23615, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457511,17 +339431,12 @@ }, { "id": 23616, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457529,17 +339444,12 @@ }, { "id": 23617, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457547,17 +339457,12 @@ }, { "id": 23618, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457565,17 +339470,12 @@ }, { "id": 23619, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457583,17 +339483,12 @@ }, { "id": 23620, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457601,17 +339496,12 @@ }, { "id": 23621, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457619,17 +339509,12 @@ }, { "id": 23622, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457637,17 +339522,12 @@ }, { "id": 23623, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457655,17 +339535,12 @@ }, { "id": 23624, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457673,17 +339548,12 @@ }, { "id": 23625, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457691,17 +339561,12 @@ }, { "id": 23626, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457709,17 +339574,12 @@ }, { "id": 23627, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457727,17 +339587,12 @@ }, { "id": 23628, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457745,17 +339600,12 @@ }, { "id": 23629, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457763,17 +339613,12 @@ }, { "id": 23630, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457781,17 +339626,12 @@ }, { "id": 23631, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457799,17 +339639,12 @@ }, { "id": 23632, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457817,17 +339652,12 @@ }, { "id": 23633, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457835,17 +339665,12 @@ }, { "id": 23634, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457853,17 +339678,12 @@ }, { "id": 23635, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457871,17 +339691,12 @@ }, { "id": 23636, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457889,17 +339704,12 @@ }, { "id": 23637, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457907,17 +339717,12 @@ }, { "id": 23638, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457925,17 +339730,12 @@ }, { "id": 23639, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457943,17 +339743,12 @@ }, { "id": 23640, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457961,17 +339756,12 @@ }, { "id": 23641, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457979,17 +339769,12 @@ }, { "id": 23642, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -457997,17 +339782,12 @@ }, { "id": 23643, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458015,17 +339795,12 @@ }, { "id": 23644, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458033,17 +339808,12 @@ }, { "id": 23645, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458051,17 +339821,12 @@ }, { "id": 23646, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458069,17 +339834,12 @@ }, { "id": 23647, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458087,17 +339847,12 @@ }, { "id": 23648, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458105,17 +339860,12 @@ }, { "id": 23649, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458123,17 +339873,12 @@ }, { "id": 23650, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458141,17 +339886,12 @@ }, { "id": 23651, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458159,17 +339899,12 @@ }, { "id": 23652, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458177,17 +339912,12 @@ }, { "id": 23653, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458195,17 +339925,12 @@ }, { "id": 23654, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458213,17 +339938,12 @@ }, { "id": 23655, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458231,17 +339951,12 @@ }, { "id": 23656, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458249,17 +339964,12 @@ }, { "id": 23657, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458267,17 +339977,12 @@ }, { "id": 23658, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458285,17 +339990,12 @@ }, { "id": 23659, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458303,17 +340003,12 @@ }, { "id": 23660, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458321,17 +340016,12 @@ }, { "id": 23661, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458339,17 +340029,12 @@ }, { "id": 23662, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458357,17 +340042,12 @@ }, { "id": 23663, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458375,17 +340055,12 @@ }, { "id": 23664, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458393,17 +340068,12 @@ }, { "id": 23665, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458411,17 +340081,12 @@ }, { "id": 23666, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458429,17 +340094,12 @@ }, { "id": 23667, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458447,17 +340107,12 @@ }, { "id": 23668, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458465,17 +340120,12 @@ }, { "id": 23669, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458483,17 +340133,12 @@ }, { "id": 23670, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458501,17 +340146,12 @@ }, { "id": 23671, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458519,17 +340159,12 @@ }, { "id": 23672, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458537,17 +340172,12 @@ }, { "id": 23673, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458555,17 +340185,12 @@ }, { "id": 23674, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458573,17 +340198,12 @@ }, { "id": 23675, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458591,17 +340211,12 @@ }, { "id": 23676, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458609,17 +340224,12 @@ }, { "id": 23677, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458627,17 +340237,12 @@ }, { "id": 23678, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458645,17 +340250,12 @@ }, { "id": 23679, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458663,17 +340263,12 @@ }, { "id": 23680, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458681,17 +340276,12 @@ }, { "id": 23681, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458699,17 +340289,12 @@ }, { "id": 23682, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458717,17 +340302,12 @@ }, { "id": 23683, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458735,17 +340315,12 @@ }, { "id": 23684, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458753,17 +340328,12 @@ }, { "id": 23685, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458771,17 +340341,12 @@ }, { "id": 23686, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458789,17 +340354,12 @@ }, { "id": 23687, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458807,17 +340367,12 @@ }, { "id": 23688, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458825,17 +340380,12 @@ }, { "id": 23689, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458843,17 +340393,12 @@ }, { "id": 23690, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458861,17 +340406,12 @@ }, { "id": 23691, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458879,17 +340419,12 @@ }, { "id": 23692, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458897,17 +340432,12 @@ }, { "id": 23693, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458915,17 +340445,12 @@ }, { "id": 23694, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458933,17 +340458,12 @@ }, { "id": 23695, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458951,17 +340471,12 @@ }, { "id": 23696, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458969,17 +340484,12 @@ }, { "id": 23697, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -458987,17 +340497,12 @@ }, { "id": 23698, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459005,17 +340510,12 @@ }, { "id": 23699, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459023,17 +340523,12 @@ }, { "id": 23700, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459041,17 +340536,12 @@ }, { "id": 23701, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459059,17 +340549,12 @@ }, { "id": 23702, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459077,17 +340562,12 @@ }, { "id": 23703, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459095,17 +340575,12 @@ }, { "id": 23704, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459113,17 +340588,12 @@ }, { "id": 23705, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459131,17 +340601,12 @@ }, { "id": 23706, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459149,17 +340614,12 @@ }, { "id": 23707, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459167,17 +340627,12 @@ }, { "id": 23708, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459185,17 +340640,12 @@ }, { "id": 23709, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459203,17 +340653,12 @@ }, { "id": 23710, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459221,17 +340666,12 @@ }, { "id": 23711, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459239,17 +340679,12 @@ }, { "id": 23712, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459257,17 +340692,12 @@ }, { "id": 23713, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459275,17 +340705,12 @@ }, { "id": 23714, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459293,17 +340718,12 @@ }, { "id": 23715, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459311,17 +340731,12 @@ }, { "id": 23716, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459329,17 +340744,12 @@ }, { "id": 23717, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459347,17 +340757,12 @@ }, { "id": 23718, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459365,17 +340770,12 @@ }, { "id": 23719, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459383,17 +340783,12 @@ }, { "id": 23720, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459401,17 +340796,12 @@ }, { "id": 23721, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459419,17 +340809,12 @@ }, { "id": 23722, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459437,17 +340822,12 @@ }, { "id": 23723, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459455,17 +340835,12 @@ }, { "id": 23724, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459473,17 +340848,12 @@ }, { "id": 23725, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459491,17 +340861,12 @@ }, { "id": 23726, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459509,17 +340874,12 @@ }, { "id": 23727, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459527,17 +340887,12 @@ }, { "id": 23728, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459545,17 +340900,12 @@ }, { "id": 23729, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459563,17 +340913,12 @@ }, { "id": 23730, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459581,17 +340926,12 @@ }, { "id": 23731, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459599,17 +340939,12 @@ }, { "id": 23732, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459617,17 +340952,12 @@ }, { "id": 23733, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459635,17 +340965,12 @@ }, { "id": 23734, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459653,17 +340978,12 @@ }, { "id": 23735, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459671,17 +340991,12 @@ }, { "id": 23736, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459689,17 +341004,12 @@ }, { "id": 23737, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459707,17 +341017,12 @@ }, { "id": 23738, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459725,17 +341030,12 @@ }, { "id": 23739, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459743,17 +341043,12 @@ }, { "id": 23740, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459761,17 +341056,12 @@ }, { "id": 23741, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459779,17 +341069,12 @@ }, { "id": 23742, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459797,17 +341082,12 @@ }, { "id": 23743, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459815,17 +341095,12 @@ }, { "id": 23744, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459833,17 +341108,12 @@ }, { "id": 23745, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459851,17 +341121,12 @@ }, { "id": 23746, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459869,17 +341134,12 @@ }, { "id": 23747, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459887,17 +341147,12 @@ }, { "id": 23748, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459905,17 +341160,12 @@ }, { "id": 23749, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459923,17 +341173,12 @@ }, { "id": 23750, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459941,17 +341186,12 @@ }, { "id": 23751, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459959,17 +341199,12 @@ }, { "id": 23752, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459977,17 +341212,12 @@ }, { "id": 23753, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -459995,17 +341225,12 @@ }, { "id": 23754, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460013,17 +341238,12 @@ }, { "id": 23755, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460031,17 +341251,12 @@ }, { "id": 23756, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460049,17 +341264,12 @@ }, { "id": 23757, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460067,17 +341277,12 @@ }, { "id": 23758, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460085,17 +341290,12 @@ }, { "id": 23759, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460103,17 +341303,12 @@ }, { "id": 23760, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460121,17 +341316,12 @@ }, { "id": 23761, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460139,17 +341329,12 @@ }, { "id": 23762, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460157,17 +341342,12 @@ }, { "id": 23763, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460175,17 +341355,12 @@ }, { "id": 23764, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460193,17 +341368,12 @@ }, { "id": 23765, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460211,17 +341381,12 @@ }, { "id": 23766, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460229,17 +341394,12 @@ }, { "id": 23767, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460247,17 +341407,12 @@ }, { "id": 23768, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460265,17 +341420,12 @@ }, { "id": 23769, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460283,17 +341433,12 @@ }, { "id": 23770, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460301,17 +341446,12 @@ }, { "id": 23771, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460319,17 +341459,12 @@ }, { "id": 23772, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460337,17 +341472,12 @@ }, { "id": 23773, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460355,17 +341485,12 @@ }, { "id": 23774, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460373,17 +341498,12 @@ }, { "id": 23775, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460391,17 +341511,12 @@ }, { "id": 23776, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460409,17 +341524,12 @@ }, { "id": 23777, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460427,17 +341537,12 @@ }, { "id": 23778, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460445,17 +341550,12 @@ }, { "id": 23779, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460463,17 +341563,12 @@ }, { "id": 23780, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460481,17 +341576,12 @@ }, { "id": 23781, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460499,17 +341589,12 @@ }, { "id": 23782, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460517,17 +341602,12 @@ }, { "id": 23783, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460535,17 +341615,12 @@ }, { "id": 23784, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460553,17 +341628,12 @@ }, { "id": 23785, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460571,17 +341641,12 @@ }, { "id": 23786, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460589,17 +341654,12 @@ }, { "id": 23787, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460607,17 +341667,12 @@ }, { "id": 23788, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460625,17 +341680,12 @@ }, { "id": 23789, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460643,17 +341693,12 @@ }, { "id": 23790, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460661,17 +341706,12 @@ }, { "id": 23791, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460679,17 +341719,12 @@ }, { "id": 23792, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460697,17 +341732,12 @@ }, { "id": 23793, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460715,17 +341745,12 @@ }, { "id": 23794, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460733,17 +341758,12 @@ }, { "id": 23795, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460751,17 +341771,12 @@ }, { "id": 23796, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460769,17 +341784,12 @@ }, { "id": 23797, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460787,17 +341797,12 @@ }, { "id": 23798, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460805,17 +341810,12 @@ }, { "id": 23799, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460823,17 +341823,12 @@ }, { "id": 23800, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460841,17 +341836,12 @@ }, { "id": 23801, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460859,17 +341849,12 @@ }, { "id": 23802, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460877,17 +341862,12 @@ }, { "id": 23803, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460895,17 +341875,12 @@ }, { "id": 23804, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460913,17 +341888,12 @@ }, { "id": 23805, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460931,17 +341901,12 @@ }, { "id": 23806, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460949,17 +341914,12 @@ }, { "id": 23807, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460967,17 +341927,12 @@ }, { "id": 23808, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -460985,17 +341940,12 @@ }, { "id": 23809, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461003,17 +341953,12 @@ }, { "id": 23810, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461021,17 +341966,12 @@ }, { "id": 23811, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461039,17 +341979,12 @@ }, { "id": 23812, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461057,17 +341992,12 @@ }, { "id": 23813, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461075,17 +342005,12 @@ }, { "id": 23814, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461093,17 +342018,12 @@ }, { "id": 23815, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461111,17 +342031,12 @@ }, { "id": 23816, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461129,17 +342044,12 @@ }, { "id": 23817, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461147,17 +342057,12 @@ }, { "id": 23818, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461165,17 +342070,12 @@ }, { "id": 23819, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461183,17 +342083,12 @@ }, { "id": 23820, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461201,17 +342096,12 @@ }, { "id": 23821, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461219,17 +342109,12 @@ }, { "id": 23822, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461237,17 +342122,12 @@ }, { "id": 23823, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461255,17 +342135,12 @@ }, { "id": 23824, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461273,17 +342148,12 @@ }, { "id": 23825, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461291,17 +342161,12 @@ }, { "id": 23826, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 1, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -461361,17 +342226,12 @@ "states": [ { "id": 23827, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.2, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -461516,1806 +342376,1166 @@ ] }, "properties": [ - -243038527, - -243022308, - -141120732, - -136500244, - -246124358, - 795783032, - -242482226 + -49614640, + -49598421, + 52303155, + 56923643, + -52700471, + 989206919, + -49058339 ], "default_state_id": 23955, "states": [ { "id": 23828, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23829, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23830, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23831, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23832, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23833, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23834, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23835, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23836, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23837, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23838, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23839, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23840, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23841, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23842, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23843, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23844, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23845, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23846, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23847, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23848, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23849, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23850, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23851, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23852, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23853, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23854, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23855, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23856, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23857, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23858, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23859, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23860, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23861, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23862, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23863, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23864, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23865, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23866, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23867, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23868, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23869, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23870, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23871, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23872, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23873, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23874, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23875, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23876, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23877, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23878, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23879, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23880, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23881, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23882, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23883, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23884, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23885, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23886, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23887, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23888, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23889, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23890, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23891, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23892, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23893, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23894, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23895, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23896, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23897, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23898, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23899, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23900, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23901, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23902, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23903, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23904, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23905, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23906, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23907, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23908, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23909, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23910, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23911, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23912, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23913, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23914, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23915, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23916, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23917, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23918, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23919, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23920, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23921, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23922, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23923, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23924, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23925, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23926, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23927, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23928, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23929, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23930, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23931, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23932, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23933, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23934, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23935, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23936, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23937, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23938, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23939, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23940, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23941, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23942, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23943, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23944, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23945, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23946, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23947, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23948, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23949, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23950, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23951, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23952, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23953, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23954, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 23955, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.2, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -463364,23 +343584,18 @@ ] }, "properties": [ - -152295390 + 41128497 ], "default_state_id": 23957, "states": [ { "id": 23956, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -463388,17 +343603,12 @@ }, { "id": 23957, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -463450,25 +343660,20 @@ ] }, "properties": [ - -1497647537, - 117520335, - 795783032 + -1304223650, + 310944222, + 989206919 ], "default_state_id": 23965, "states": [ { "id": 23958, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463476,17 +343681,12 @@ }, { "id": 23959, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463494,17 +343694,12 @@ }, { "id": 23960, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463512,17 +343707,12 @@ }, { "id": 23961, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463530,17 +343720,12 @@ }, { "id": 23962, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463548,17 +343733,12 @@ }, { "id": 23963, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463566,17 +343746,12 @@ }, { "id": 23964, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463584,17 +343759,12 @@ }, { "id": 23965, - "air": false, - "is_solid": true, + "state_flags": 72, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ], @@ -463638,17 +343808,12 @@ "states": [ { "id": 23966, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -463691,17 +343856,12 @@ "states": [ { "id": 23967, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -463744,17 +343904,12 @@ "states": [ { "id": 23968, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -463797,17 +343952,12 @@ "states": [ { "id": 23969, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -463894,17 +344044,12 @@ "states": [ { "id": 23970, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -463991,17 +344136,12 @@ "states": [ { "id": 23971, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 4.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464044,17 +344184,12 @@ "states": [ { "id": 23972, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464097,17 +344232,12 @@ "states": [ { "id": 23973, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464150,17 +344280,12 @@ "states": [ { "id": 23974, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464203,17 +344328,12 @@ "states": [ { "id": 23975, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464256,17 +344376,12 @@ "states": [ { "id": 23976, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464309,17 +344424,12 @@ "states": [ { "id": 23977, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464362,17 +344472,12 @@ "states": [ { "id": 23978, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464415,17 +344520,12 @@ "states": [ { "id": 23979, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464468,17 +344568,12 @@ "states": [ { "id": 23980, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464521,17 +344616,12 @@ "states": [ { "id": 23981, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464574,17 +344664,12 @@ "states": [ { "id": 23982, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464627,17 +344712,12 @@ "states": [ { "id": 23983, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -464676,26 +344756,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 23995, "states": [ { "id": 23984, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -464703,17 +344778,12 @@ }, { "id": 23985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -464721,17 +344791,12 @@ }, { "id": 23986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -464740,17 +344805,12 @@ }, { "id": 23987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -464759,17 +344819,12 @@ }, { "id": 23988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -464778,17 +344833,12 @@ }, { "id": 23989, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -464797,17 +344847,12 @@ }, { "id": 23990, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -464816,17 +344861,12 @@ }, { "id": 23991, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -464835,17 +344875,12 @@ }, { "id": 23992, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -464854,17 +344889,12 @@ }, { "id": 23993, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -464873,17 +344903,12 @@ }, { "id": 23994, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -464891,17 +344916,12 @@ }, { "id": 23995, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -464909,17 +344929,12 @@ }, { "id": 23996, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -464928,17 +344943,12 @@ }, { "id": 23997, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -464947,17 +344957,12 @@ }, { "id": 23998, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -464966,17 +344971,12 @@ }, { "id": 23999, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -464985,17 +344985,12 @@ }, { "id": 24000, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -465003,17 +344998,12 @@ }, { "id": 24001, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -465021,17 +345011,12 @@ }, { "id": 24002, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -465039,17 +345024,12 @@ }, { "id": 24003, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -465057,17 +345037,12 @@ }, { "id": 24004, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -465075,17 +345050,12 @@ }, { "id": 24005, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -465093,17 +345063,12 @@ }, { "id": 24006, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -465112,17 +345077,12 @@ }, { "id": 24007, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -465131,17 +345091,12 @@ }, { "id": 24008, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -465150,17 +345105,12 @@ }, { "id": 24009, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -465169,17 +345119,12 @@ }, { "id": 24010, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -465188,17 +345133,12 @@ }, { "id": 24011, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -465207,17 +345147,12 @@ }, { "id": 24012, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -465226,17 +345161,12 @@ }, { "id": 24013, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -465245,17 +345175,12 @@ }, { "id": 24014, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -465263,17 +345188,12 @@ }, { "id": 24015, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -465281,17 +345201,12 @@ }, { "id": 24016, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -465300,17 +345215,12 @@ }, { "id": 24017, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -465319,17 +345229,12 @@ }, { "id": 24018, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -465338,17 +345243,12 @@ }, { "id": 24019, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -465357,17 +345257,12 @@ }, { "id": 24020, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -465375,17 +345270,12 @@ }, { "id": 24021, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -465393,17 +345283,12 @@ }, { "id": 24022, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -465411,17 +345296,12 @@ }, { "id": 24023, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -465429,17 +345309,12 @@ }, { "id": 24024, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -465447,17 +345322,12 @@ }, { "id": 24025, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -465465,17 +345335,12 @@ }, { "id": 24026, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -465484,17 +345349,12 @@ }, { "id": 24027, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -465503,17 +345363,12 @@ }, { "id": 24028, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -465522,17 +345377,12 @@ }, { "id": 24029, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -465541,17 +345391,12 @@ }, { "id": 24030, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -465560,17 +345405,12 @@ }, { "id": 24031, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -465579,17 +345419,12 @@ }, { "id": 24032, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -465598,17 +345433,12 @@ }, { "id": 24033, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -465617,17 +345447,12 @@ }, { "id": 24034, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -465635,17 +345460,12 @@ }, { "id": 24035, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -465653,17 +345473,12 @@ }, { "id": 24036, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -465672,17 +345487,12 @@ }, { "id": 24037, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -465691,17 +345501,12 @@ }, { "id": 24038, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -465710,17 +345515,12 @@ }, { "id": 24039, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -465729,17 +345529,12 @@ }, { "id": 24040, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -465747,17 +345542,12 @@ }, { "id": 24041, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -465765,17 +345555,12 @@ }, { "id": 24042, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -465783,17 +345568,12 @@ }, { "id": 24043, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -465801,17 +345581,12 @@ }, { "id": 24044, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -465819,17 +345594,12 @@ }, { "id": 24045, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -465837,17 +345607,12 @@ }, { "id": 24046, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -465856,17 +345621,12 @@ }, { "id": 24047, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -465875,17 +345635,12 @@ }, { "id": 24048, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -465894,17 +345649,12 @@ }, { "id": 24049, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -465913,17 +345663,12 @@ }, { "id": 24050, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -465932,17 +345677,12 @@ }, { "id": 24051, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -465951,17 +345691,12 @@ }, { "id": 24052, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -465970,17 +345705,12 @@ }, { "id": 24053, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -465989,17 +345719,12 @@ }, { "id": 24054, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -466007,17 +345732,12 @@ }, { "id": 24055, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -466025,17 +345745,12 @@ }, { "id": 24056, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -466044,17 +345759,12 @@ }, { "id": 24057, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -466063,17 +345773,12 @@ }, { "id": 24058, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -466082,17 +345787,12 @@ }, { "id": 24059, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -466101,17 +345801,12 @@ }, { "id": 24060, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -466119,17 +345814,12 @@ }, { "id": 24061, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -466137,17 +345827,12 @@ }, { "id": 24062, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -466155,17 +345840,12 @@ }, { "id": 24063, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -466205,26 +345885,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24075, "states": [ { "id": 24064, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -466232,17 +345907,12 @@ }, { "id": 24065, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -466250,17 +345920,12 @@ }, { "id": 24066, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -466269,17 +345934,12 @@ }, { "id": 24067, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -466288,17 +345948,12 @@ }, { "id": 24068, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -466307,17 +345962,12 @@ }, { "id": 24069, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -466326,17 +345976,12 @@ }, { "id": 24070, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -466345,17 +345990,12 @@ }, { "id": 24071, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -466364,17 +346004,12 @@ }, { "id": 24072, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -466383,17 +346018,12 @@ }, { "id": 24073, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -466402,17 +346032,12 @@ }, { "id": 24074, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -466420,17 +346045,12 @@ }, { "id": 24075, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -466438,17 +346058,12 @@ }, { "id": 24076, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -466457,17 +346072,12 @@ }, { "id": 24077, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -466476,17 +346086,12 @@ }, { "id": 24078, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -466495,17 +346100,12 @@ }, { "id": 24079, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -466514,17 +346114,12 @@ }, { "id": 24080, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -466532,17 +346127,12 @@ }, { "id": 24081, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -466550,17 +346140,12 @@ }, { "id": 24082, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -466568,17 +346153,12 @@ }, { "id": 24083, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -466586,17 +346166,12 @@ }, { "id": 24084, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -466604,17 +346179,12 @@ }, { "id": 24085, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -466622,17 +346192,12 @@ }, { "id": 24086, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -466641,17 +346206,12 @@ }, { "id": 24087, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -466660,17 +346220,12 @@ }, { "id": 24088, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -466679,17 +346234,12 @@ }, { "id": 24089, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -466698,17 +346248,12 @@ }, { "id": 24090, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -466717,17 +346262,12 @@ }, { "id": 24091, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -466736,17 +346276,12 @@ }, { "id": 24092, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -466755,17 +346290,12 @@ }, { "id": 24093, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -466774,17 +346304,12 @@ }, { "id": 24094, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -466792,17 +346317,12 @@ }, { "id": 24095, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -466810,17 +346330,12 @@ }, { "id": 24096, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -466829,17 +346344,12 @@ }, { "id": 24097, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -466848,17 +346358,12 @@ }, { "id": 24098, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -466867,17 +346372,12 @@ }, { "id": 24099, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -466886,17 +346386,12 @@ }, { "id": 24100, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -466904,17 +346399,12 @@ }, { "id": 24101, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -466922,17 +346412,12 @@ }, { "id": 24102, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -466940,17 +346425,12 @@ }, { "id": 24103, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -466958,17 +346438,12 @@ }, { "id": 24104, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -466976,17 +346451,12 @@ }, { "id": 24105, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -466994,17 +346464,12 @@ }, { "id": 24106, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -467013,17 +346478,12 @@ }, { "id": 24107, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -467032,17 +346492,12 @@ }, { "id": 24108, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -467051,17 +346506,12 @@ }, { "id": 24109, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -467070,17 +346520,12 @@ }, { "id": 24110, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -467089,17 +346534,12 @@ }, { "id": 24111, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -467108,17 +346548,12 @@ }, { "id": 24112, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -467127,17 +346562,12 @@ }, { "id": 24113, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -467146,17 +346576,12 @@ }, { "id": 24114, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -467164,17 +346589,12 @@ }, { "id": 24115, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -467182,17 +346602,12 @@ }, { "id": 24116, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -467201,17 +346616,12 @@ }, { "id": 24117, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -467220,17 +346630,12 @@ }, { "id": 24118, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -467239,17 +346644,12 @@ }, { "id": 24119, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -467258,17 +346658,12 @@ }, { "id": 24120, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -467276,17 +346671,12 @@ }, { "id": 24121, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -467294,17 +346684,12 @@ }, { "id": 24122, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -467312,17 +346697,12 @@ }, { "id": 24123, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -467330,17 +346710,12 @@ }, { "id": 24124, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -467348,17 +346723,12 @@ }, { "id": 24125, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -467366,17 +346736,12 @@ }, { "id": 24126, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -467385,17 +346750,12 @@ }, { "id": 24127, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -467404,17 +346764,12 @@ }, { "id": 24128, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -467423,17 +346778,12 @@ }, { "id": 24129, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -467442,17 +346792,12 @@ }, { "id": 24130, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -467461,17 +346806,12 @@ }, { "id": 24131, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -467480,17 +346820,12 @@ }, { "id": 24132, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -467499,17 +346834,12 @@ }, { "id": 24133, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -467518,17 +346848,12 @@ }, { "id": 24134, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -467536,17 +346861,12 @@ }, { "id": 24135, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -467554,17 +346874,12 @@ }, { "id": 24136, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -467573,17 +346888,12 @@ }, { "id": 24137, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -467592,17 +346902,12 @@ }, { "id": 24138, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -467611,17 +346916,12 @@ }, { "id": 24139, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -467630,17 +346930,12 @@ }, { "id": 24140, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -467648,17 +346943,12 @@ }, { "id": 24141, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -467666,17 +346956,12 @@ }, { "id": 24142, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -467684,17 +346969,12 @@ }, { "id": 24143, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -467734,26 +347014,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24155, "states": [ { "id": 24144, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -467761,17 +347036,12 @@ }, { "id": 24145, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -467779,17 +347049,12 @@ }, { "id": 24146, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -467798,17 +347063,12 @@ }, { "id": 24147, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -467817,17 +347077,12 @@ }, { "id": 24148, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -467836,17 +347091,12 @@ }, { "id": 24149, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -467855,17 +347105,12 @@ }, { "id": 24150, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -467874,17 +347119,12 @@ }, { "id": 24151, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -467893,17 +347133,12 @@ }, { "id": 24152, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -467912,17 +347147,12 @@ }, { "id": 24153, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -467931,17 +347161,12 @@ }, { "id": 24154, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -467949,17 +347174,12 @@ }, { "id": 24155, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -467967,17 +347187,12 @@ }, { "id": 24156, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -467986,17 +347201,12 @@ }, { "id": 24157, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468005,17 +347215,12 @@ }, { "id": 24158, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -468024,17 +347229,12 @@ }, { "id": 24159, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -468043,17 +347243,12 @@ }, { "id": 24160, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -468061,17 +347256,12 @@ }, { "id": 24161, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -468079,17 +347269,12 @@ }, { "id": 24162, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -468097,17 +347282,12 @@ }, { "id": 24163, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -468115,17 +347295,12 @@ }, { "id": 24164, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -468133,17 +347308,12 @@ }, { "id": 24165, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -468151,17 +347321,12 @@ }, { "id": 24166, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -468170,17 +347335,12 @@ }, { "id": 24167, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -468189,17 +347349,12 @@ }, { "id": 24168, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -468208,17 +347363,12 @@ }, { "id": 24169, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -468227,17 +347377,12 @@ }, { "id": 24170, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -468246,17 +347391,12 @@ }, { "id": 24171, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -468265,17 +347405,12 @@ }, { "id": 24172, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -468284,17 +347419,12 @@ }, { "id": 24173, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -468303,17 +347433,12 @@ }, { "id": 24174, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -468321,17 +347446,12 @@ }, { "id": 24175, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -468339,17 +347459,12 @@ }, { "id": 24176, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -468358,17 +347473,12 @@ }, { "id": 24177, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -468377,17 +347487,12 @@ }, { "id": 24178, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468396,17 +347501,12 @@ }, { "id": 24179, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468415,17 +347515,12 @@ }, { "id": 24180, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -468433,17 +347528,12 @@ }, { "id": 24181, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -468451,17 +347541,12 @@ }, { "id": 24182, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -468469,17 +347554,12 @@ }, { "id": 24183, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -468487,17 +347567,12 @@ }, { "id": 24184, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -468505,17 +347580,12 @@ }, { "id": 24185, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -468523,17 +347593,12 @@ }, { "id": 24186, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -468542,17 +347607,12 @@ }, { "id": 24187, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -468561,17 +347621,12 @@ }, { "id": 24188, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -468580,17 +347635,12 @@ }, { "id": 24189, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -468599,17 +347649,12 @@ }, { "id": 24190, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -468618,17 +347663,12 @@ }, { "id": 24191, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -468637,17 +347677,12 @@ }, { "id": 24192, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -468656,17 +347691,12 @@ }, { "id": 24193, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -468675,17 +347705,12 @@ }, { "id": 24194, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -468693,17 +347718,12 @@ }, { "id": 24195, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -468711,17 +347731,12 @@ }, { "id": 24196, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468730,17 +347745,12 @@ }, { "id": 24197, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468749,17 +347759,12 @@ }, { "id": 24198, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468768,17 +347773,12 @@ }, { "id": 24199, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -468787,17 +347787,12 @@ }, { "id": 24200, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -468805,17 +347800,12 @@ }, { "id": 24201, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -468823,17 +347813,12 @@ }, { "id": 24202, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -468841,17 +347826,12 @@ }, { "id": 24203, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -468859,17 +347839,12 @@ }, { "id": 24204, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -468877,17 +347852,12 @@ }, { "id": 24205, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -468895,17 +347865,12 @@ }, { "id": 24206, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -468914,17 +347879,12 @@ }, { "id": 24207, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -468933,17 +347893,12 @@ }, { "id": 24208, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -468952,17 +347907,12 @@ }, { "id": 24209, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -468971,17 +347921,12 @@ }, { "id": 24210, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -468990,17 +347935,12 @@ }, { "id": 24211, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -469009,17 +347949,12 @@ }, { "id": 24212, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -469028,17 +347963,12 @@ }, { "id": 24213, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -469047,17 +347977,12 @@ }, { "id": 24214, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -469065,17 +347990,12 @@ }, { "id": 24215, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -469083,17 +348003,12 @@ }, { "id": 24216, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -469102,17 +348017,12 @@ }, { "id": 24217, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -469121,17 +348031,12 @@ }, { "id": 24218, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -469140,17 +348045,12 @@ }, { "id": 24219, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -469159,17 +348059,12 @@ }, { "id": 24220, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -469177,17 +348072,12 @@ }, { "id": 24221, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -469195,17 +348085,12 @@ }, { "id": 24222, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -469213,17 +348098,12 @@ }, { "id": 24223, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -469263,26 +348143,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24235, "states": [ { "id": 24224, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -469290,17 +348165,12 @@ }, { "id": 24225, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -469308,17 +348178,12 @@ }, { "id": 24226, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -469327,17 +348192,12 @@ }, { "id": 24227, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -469346,17 +348206,12 @@ }, { "id": 24228, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -469365,17 +348220,12 @@ }, { "id": 24229, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -469384,17 +348234,12 @@ }, { "id": 24230, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -469403,17 +348248,12 @@ }, { "id": 24231, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -469422,17 +348262,12 @@ }, { "id": 24232, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -469441,17 +348276,12 @@ }, { "id": 24233, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -469460,17 +348290,12 @@ }, { "id": 24234, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -469478,17 +348303,12 @@ }, { "id": 24235, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -469496,17 +348316,12 @@ }, { "id": 24236, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -469515,17 +348330,12 @@ }, { "id": 24237, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -469534,17 +348344,12 @@ }, { "id": 24238, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -469553,17 +348358,12 @@ }, { "id": 24239, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -469572,17 +348372,12 @@ }, { "id": 24240, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -469590,17 +348385,12 @@ }, { "id": 24241, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -469608,17 +348398,12 @@ }, { "id": 24242, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -469626,17 +348411,12 @@ }, { "id": 24243, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -469644,17 +348424,12 @@ }, { "id": 24244, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -469662,17 +348437,12 @@ }, { "id": 24245, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -469680,17 +348450,12 @@ }, { "id": 24246, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -469699,17 +348464,12 @@ }, { "id": 24247, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -469718,17 +348478,12 @@ }, { "id": 24248, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -469737,17 +348492,12 @@ }, { "id": 24249, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -469756,17 +348506,12 @@ }, { "id": 24250, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -469775,17 +348520,12 @@ }, { "id": 24251, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -469794,17 +348534,12 @@ }, { "id": 24252, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -469813,17 +348548,12 @@ }, { "id": 24253, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -469832,17 +348562,12 @@ }, { "id": 24254, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -469850,17 +348575,12 @@ }, { "id": 24255, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -469868,17 +348588,12 @@ }, { "id": 24256, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -469887,17 +348602,12 @@ }, { "id": 24257, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -469906,17 +348616,12 @@ }, { "id": 24258, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -469925,17 +348630,12 @@ }, { "id": 24259, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -469944,17 +348644,12 @@ }, { "id": 24260, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -469962,17 +348657,12 @@ }, { "id": 24261, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -469980,17 +348670,12 @@ }, { "id": 24262, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -469998,17 +348683,12 @@ }, { "id": 24263, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -470016,17 +348696,12 @@ }, { "id": 24264, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -470034,17 +348709,12 @@ }, { "id": 24265, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -470052,17 +348722,12 @@ }, { "id": 24266, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -470071,17 +348736,12 @@ }, { "id": 24267, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -470090,17 +348750,12 @@ }, { "id": 24268, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -470109,17 +348764,12 @@ }, { "id": 24269, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -470128,17 +348778,12 @@ }, { "id": 24270, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -470147,17 +348792,12 @@ }, { "id": 24271, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -470166,17 +348806,12 @@ }, { "id": 24272, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -470185,17 +348820,12 @@ }, { "id": 24273, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -470204,17 +348834,12 @@ }, { "id": 24274, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -470222,17 +348847,12 @@ }, { "id": 24275, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -470240,17 +348860,12 @@ }, { "id": 24276, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -470259,17 +348874,12 @@ }, { "id": 24277, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -470278,17 +348888,12 @@ }, { "id": 24278, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -470297,17 +348902,12 @@ }, { "id": 24279, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -470316,17 +348916,12 @@ }, { "id": 24280, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -470334,17 +348929,12 @@ }, { "id": 24281, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -470352,17 +348942,12 @@ }, { "id": 24282, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -470370,17 +348955,12 @@ }, { "id": 24283, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -470388,17 +348968,12 @@ }, { "id": 24284, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -470406,17 +348981,12 @@ }, { "id": 24285, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -470424,17 +348994,12 @@ }, { "id": 24286, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -470443,17 +349008,12 @@ }, { "id": 24287, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -470462,17 +349022,12 @@ }, { "id": 24288, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -470481,17 +349036,12 @@ }, { "id": 24289, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -470500,17 +349050,12 @@ }, { "id": 24290, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -470519,17 +349064,12 @@ }, { "id": 24291, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -470538,17 +349078,12 @@ }, { "id": 24292, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -470557,17 +349092,12 @@ }, { "id": 24293, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -470576,17 +349106,12 @@ }, { "id": 24294, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -470594,17 +349119,12 @@ }, { "id": 24295, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -470612,17 +349132,12 @@ }, { "id": 24296, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -470631,17 +349146,12 @@ }, { "id": 24297, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -470650,17 +349160,12 @@ }, { "id": 24298, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -470669,17 +349174,12 @@ }, { "id": 24299, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -470688,17 +349188,12 @@ }, { "id": 24300, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -470706,17 +349201,12 @@ }, { "id": 24301, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -470724,17 +349214,12 @@ }, { "id": 24302, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -470742,17 +349227,12 @@ }, { "id": 24303, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -470806,109 +349286,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24307, "states": [ { "id": 24304, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24305, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24306, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24307, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24308, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24309, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -470961,109 +349411,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24313, "states": [ { "id": 24310, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24311, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24312, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24313, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24314, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24315, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471116,109 +349536,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24319, "states": [ { "id": 24316, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24317, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24318, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24319, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24320, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24321, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471271,109 +349661,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24325, "states": [ { "id": 24322, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24323, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24324, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24325, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24326, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24327, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471416,17 +349776,12 @@ "states": [ { "id": 24328, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471469,17 +349824,12 @@ "states": [ { "id": 24329, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471522,17 +349872,12 @@ "states": [ { "id": 24330, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471575,17 +349920,12 @@ "states": [ { "id": 24331, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471628,17 +349968,12 @@ "states": [ { "id": 24332, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471681,17 +350016,12 @@ "states": [ { "id": 24333, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471734,17 +350064,12 @@ "states": [ { "id": 24334, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471787,17 +350112,12 @@ "states": [ { "id": 24335, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -471836,26 +350156,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24347, "states": [ { "id": 24336, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -471863,17 +350178,12 @@ }, { "id": 24337, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -471881,17 +350191,12 @@ }, { "id": 24338, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -471900,17 +350205,12 @@ }, { "id": 24339, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -471919,17 +350219,12 @@ }, { "id": 24340, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -471938,17 +350233,12 @@ }, { "id": 24341, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -471957,17 +350247,12 @@ }, { "id": 24342, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -471976,17 +350261,12 @@ }, { "id": 24343, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -471995,17 +350275,12 @@ }, { "id": 24344, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -472014,17 +350289,12 @@ }, { "id": 24345, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -472033,17 +350303,12 @@ }, { "id": 24346, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -472051,17 +350316,12 @@ }, { "id": 24347, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -472069,17 +350329,12 @@ }, { "id": 24348, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472088,17 +350343,12 @@ }, { "id": 24349, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472107,17 +350357,12 @@ }, { "id": 24350, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -472126,17 +350371,12 @@ }, { "id": 24351, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -472145,17 +350385,12 @@ }, { "id": 24352, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -472163,17 +350398,12 @@ }, { "id": 24353, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -472181,17 +350411,12 @@ }, { "id": 24354, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -472199,17 +350424,12 @@ }, { "id": 24355, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -472217,17 +350437,12 @@ }, { "id": 24356, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -472235,17 +350450,12 @@ }, { "id": 24357, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -472253,17 +350463,12 @@ }, { "id": 24358, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -472272,17 +350477,12 @@ }, { "id": 24359, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -472291,17 +350491,12 @@ }, { "id": 24360, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -472310,17 +350505,12 @@ }, { "id": 24361, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -472329,17 +350519,12 @@ }, { "id": 24362, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -472348,17 +350533,12 @@ }, { "id": 24363, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -472367,17 +350547,12 @@ }, { "id": 24364, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -472386,17 +350561,12 @@ }, { "id": 24365, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -472405,17 +350575,12 @@ }, { "id": 24366, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -472423,17 +350588,12 @@ }, { "id": 24367, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -472441,17 +350601,12 @@ }, { "id": 24368, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -472460,17 +350615,12 @@ }, { "id": 24369, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -472479,17 +350629,12 @@ }, { "id": 24370, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472498,17 +350643,12 @@ }, { "id": 24371, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472517,17 +350657,12 @@ }, { "id": 24372, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -472535,17 +350670,12 @@ }, { "id": 24373, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -472553,17 +350683,12 @@ }, { "id": 24374, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -472571,17 +350696,12 @@ }, { "id": 24375, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -472589,17 +350709,12 @@ }, { "id": 24376, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -472607,17 +350722,12 @@ }, { "id": 24377, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -472625,17 +350735,12 @@ }, { "id": 24378, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -472644,17 +350749,12 @@ }, { "id": 24379, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -472663,17 +350763,12 @@ }, { "id": 24380, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -472682,17 +350777,12 @@ }, { "id": 24381, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -472701,17 +350791,12 @@ }, { "id": 24382, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -472720,17 +350805,12 @@ }, { "id": 24383, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -472739,17 +350819,12 @@ }, { "id": 24384, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -472758,17 +350833,12 @@ }, { "id": 24385, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -472777,17 +350847,12 @@ }, { "id": 24386, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -472795,17 +350860,12 @@ }, { "id": 24387, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -472813,17 +350873,12 @@ }, { "id": 24388, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472832,17 +350887,12 @@ }, { "id": 24389, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472851,17 +350901,12 @@ }, { "id": 24390, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472870,17 +350915,12 @@ }, { "id": 24391, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -472889,17 +350929,12 @@ }, { "id": 24392, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -472907,17 +350942,12 @@ }, { "id": 24393, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -472925,17 +350955,12 @@ }, { "id": 24394, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -472943,17 +350968,12 @@ }, { "id": 24395, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -472961,17 +350981,12 @@ }, { "id": 24396, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -472979,17 +350994,12 @@ }, { "id": 24397, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -472997,17 +351007,12 @@ }, { "id": 24398, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -473016,17 +351021,12 @@ }, { "id": 24399, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -473035,17 +351035,12 @@ }, { "id": 24400, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -473054,17 +351049,12 @@ }, { "id": 24401, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -473073,17 +351063,12 @@ }, { "id": 24402, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -473092,17 +351077,12 @@ }, { "id": 24403, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -473111,17 +351091,12 @@ }, { "id": 24404, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -473130,17 +351105,12 @@ }, { "id": 24405, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -473149,17 +351119,12 @@ }, { "id": 24406, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -473167,17 +351132,12 @@ }, { "id": 24407, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -473185,17 +351145,12 @@ }, { "id": 24408, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -473204,17 +351159,12 @@ }, { "id": 24409, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -473223,17 +351173,12 @@ }, { "id": 24410, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -473242,17 +351187,12 @@ }, { "id": 24411, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -473261,17 +351201,12 @@ }, { "id": 24412, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -473279,17 +351214,12 @@ }, { "id": 24413, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -473297,17 +351227,12 @@ }, { "id": 24414, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -473315,17 +351240,12 @@ }, { "id": 24415, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -473365,26 +351285,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24427, "states": [ { "id": 24416, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -473392,17 +351307,12 @@ }, { "id": 24417, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -473410,17 +351320,12 @@ }, { "id": 24418, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -473429,17 +351334,12 @@ }, { "id": 24419, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -473448,17 +351348,12 @@ }, { "id": 24420, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -473467,17 +351362,12 @@ }, { "id": 24421, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -473486,17 +351376,12 @@ }, { "id": 24422, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -473505,17 +351390,12 @@ }, { "id": 24423, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -473524,17 +351404,12 @@ }, { "id": 24424, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -473543,17 +351418,12 @@ }, { "id": 24425, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -473562,17 +351432,12 @@ }, { "id": 24426, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -473580,17 +351445,12 @@ }, { "id": 24427, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -473598,17 +351458,12 @@ }, { "id": 24428, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -473617,17 +351472,12 @@ }, { "id": 24429, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -473636,17 +351486,12 @@ }, { "id": 24430, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -473655,17 +351500,12 @@ }, { "id": 24431, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -473674,17 +351514,12 @@ }, { "id": 24432, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -473692,17 +351527,12 @@ }, { "id": 24433, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -473710,17 +351540,12 @@ }, { "id": 24434, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -473728,17 +351553,12 @@ }, { "id": 24435, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -473746,17 +351566,12 @@ }, { "id": 24436, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -473764,17 +351579,12 @@ }, { "id": 24437, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -473782,17 +351592,12 @@ }, { "id": 24438, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -473801,17 +351606,12 @@ }, { "id": 24439, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -473820,17 +351620,12 @@ }, { "id": 24440, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -473839,17 +351634,12 @@ }, { "id": 24441, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -473858,17 +351648,12 @@ }, { "id": 24442, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -473877,17 +351662,12 @@ }, { "id": 24443, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -473896,17 +351676,12 @@ }, { "id": 24444, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -473915,17 +351690,12 @@ }, { "id": 24445, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -473934,17 +351704,12 @@ }, { "id": 24446, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -473952,17 +351717,12 @@ }, { "id": 24447, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -473970,17 +351730,12 @@ }, { "id": 24448, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -473989,17 +351744,12 @@ }, { "id": 24449, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -474008,17 +351758,12 @@ }, { "id": 24450, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -474027,17 +351772,12 @@ }, { "id": 24451, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -474046,17 +351786,12 @@ }, { "id": 24452, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -474064,17 +351799,12 @@ }, { "id": 24453, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -474082,17 +351812,12 @@ }, { "id": 24454, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -474100,17 +351825,12 @@ }, { "id": 24455, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -474118,17 +351838,12 @@ }, { "id": 24456, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -474136,17 +351851,12 @@ }, { "id": 24457, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -474154,17 +351864,12 @@ }, { "id": 24458, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -474173,17 +351878,12 @@ }, { "id": 24459, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -474192,17 +351892,12 @@ }, { "id": 24460, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -474211,17 +351906,12 @@ }, { "id": 24461, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -474230,17 +351920,12 @@ }, { "id": 24462, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -474249,17 +351934,12 @@ }, { "id": 24463, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -474268,17 +351948,12 @@ }, { "id": 24464, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -474287,17 +351962,12 @@ }, { "id": 24465, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -474306,17 +351976,12 @@ }, { "id": 24466, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -474324,17 +351989,12 @@ }, { "id": 24467, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -474342,17 +352002,12 @@ }, { "id": 24468, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -474361,17 +352016,12 @@ }, { "id": 24469, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -474380,17 +352030,12 @@ }, { "id": 24470, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -474399,17 +352044,12 @@ }, { "id": 24471, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -474418,17 +352058,12 @@ }, { "id": 24472, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -474436,17 +352071,12 @@ }, { "id": 24473, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -474454,17 +352084,12 @@ }, { "id": 24474, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -474472,17 +352097,12 @@ }, { "id": 24475, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -474490,17 +352110,12 @@ }, { "id": 24476, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -474508,17 +352123,12 @@ }, { "id": 24477, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -474526,17 +352136,12 @@ }, { "id": 24478, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -474545,17 +352150,12 @@ }, { "id": 24479, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -474564,17 +352164,12 @@ }, { "id": 24480, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -474583,17 +352178,12 @@ }, { "id": 24481, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -474602,17 +352192,12 @@ }, { "id": 24482, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -474621,17 +352206,12 @@ }, { "id": 24483, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -474640,17 +352220,12 @@ }, { "id": 24484, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -474659,17 +352234,12 @@ }, { "id": 24485, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -474678,17 +352248,12 @@ }, { "id": 24486, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -474696,17 +352261,12 @@ }, { "id": 24487, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -474714,17 +352274,12 @@ }, { "id": 24488, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -474733,17 +352288,12 @@ }, { "id": 24489, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -474752,17 +352302,12 @@ }, { "id": 24490, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -474771,17 +352316,12 @@ }, { "id": 24491, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -474790,17 +352330,12 @@ }, { "id": 24492, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -474808,17 +352343,12 @@ }, { "id": 24493, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -474826,17 +352356,12 @@ }, { "id": 24494, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -474844,17 +352369,12 @@ }, { "id": 24495, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -474894,26 +352414,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24507, "states": [ { "id": 24496, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -474921,17 +352436,12 @@ }, { "id": 24497, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -474939,17 +352449,12 @@ }, { "id": 24498, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -474958,17 +352463,12 @@ }, { "id": 24499, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -474977,17 +352477,12 @@ }, { "id": 24500, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -474996,17 +352491,12 @@ }, { "id": 24501, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -475015,17 +352505,12 @@ }, { "id": 24502, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -475034,17 +352519,12 @@ }, { "id": 24503, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -475053,17 +352533,12 @@ }, { "id": 24504, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -475072,17 +352547,12 @@ }, { "id": 24505, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -475091,17 +352561,12 @@ }, { "id": 24506, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -475109,17 +352574,12 @@ }, { "id": 24507, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -475127,17 +352587,12 @@ }, { "id": 24508, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475146,17 +352601,12 @@ }, { "id": 24509, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475165,17 +352615,12 @@ }, { "id": 24510, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -475184,17 +352629,12 @@ }, { "id": 24511, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -475203,17 +352643,12 @@ }, { "id": 24512, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -475221,17 +352656,12 @@ }, { "id": 24513, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -475239,17 +352669,12 @@ }, { "id": 24514, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -475257,17 +352682,12 @@ }, { "id": 24515, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -475275,17 +352695,12 @@ }, { "id": 24516, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -475293,17 +352708,12 @@ }, { "id": 24517, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -475311,17 +352721,12 @@ }, { "id": 24518, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -475330,17 +352735,12 @@ }, { "id": 24519, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -475349,17 +352749,12 @@ }, { "id": 24520, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -475368,17 +352763,12 @@ }, { "id": 24521, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -475387,17 +352777,12 @@ }, { "id": 24522, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -475406,17 +352791,12 @@ }, { "id": 24523, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -475425,17 +352805,12 @@ }, { "id": 24524, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -475444,17 +352819,12 @@ }, { "id": 24525, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -475463,17 +352833,12 @@ }, { "id": 24526, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -475481,17 +352846,12 @@ }, { "id": 24527, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -475499,17 +352859,12 @@ }, { "id": 24528, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -475518,17 +352873,12 @@ }, { "id": 24529, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -475537,17 +352887,12 @@ }, { "id": 24530, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475556,17 +352901,12 @@ }, { "id": 24531, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475575,17 +352915,12 @@ }, { "id": 24532, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -475593,17 +352928,12 @@ }, { "id": 24533, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -475611,17 +352941,12 @@ }, { "id": 24534, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -475629,17 +352954,12 @@ }, { "id": 24535, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -475647,17 +352967,12 @@ }, { "id": 24536, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -475665,17 +352980,12 @@ }, { "id": 24537, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -475683,17 +352993,12 @@ }, { "id": 24538, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -475702,17 +353007,12 @@ }, { "id": 24539, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -475721,17 +353021,12 @@ }, { "id": 24540, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -475740,17 +353035,12 @@ }, { "id": 24541, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -475759,17 +353049,12 @@ }, { "id": 24542, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -475778,17 +353063,12 @@ }, { "id": 24543, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -475797,17 +353077,12 @@ }, { "id": 24544, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -475816,17 +353091,12 @@ }, { "id": 24545, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -475835,17 +353105,12 @@ }, { "id": 24546, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -475853,17 +353118,12 @@ }, { "id": 24547, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -475871,17 +353131,12 @@ }, { "id": 24548, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475890,17 +353145,12 @@ }, { "id": 24549, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475909,17 +353159,12 @@ }, { "id": 24550, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475928,17 +353173,12 @@ }, { "id": 24551, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -475947,17 +353187,12 @@ }, { "id": 24552, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -475965,17 +353200,12 @@ }, { "id": 24553, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -475983,17 +353213,12 @@ }, { "id": 24554, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -476001,17 +353226,12 @@ }, { "id": 24555, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -476019,17 +353239,12 @@ }, { "id": 24556, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -476037,17 +353252,12 @@ }, { "id": 24557, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -476055,17 +353265,12 @@ }, { "id": 24558, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -476074,17 +353279,12 @@ }, { "id": 24559, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -476093,17 +353293,12 @@ }, { "id": 24560, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -476112,17 +353307,12 @@ }, { "id": 24561, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -476131,17 +353321,12 @@ }, { "id": 24562, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -476150,17 +353335,12 @@ }, { "id": 24563, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -476169,17 +353349,12 @@ }, { "id": 24564, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -476188,17 +353363,12 @@ }, { "id": 24565, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -476207,17 +353377,12 @@ }, { "id": 24566, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -476225,17 +353390,12 @@ }, { "id": 24567, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -476243,17 +353403,12 @@ }, { "id": 24568, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -476262,17 +353417,12 @@ }, { "id": 24569, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -476281,17 +353431,12 @@ }, { "id": 24570, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -476300,17 +353445,12 @@ }, { "id": 24571, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -476319,17 +353459,12 @@ }, { "id": 24572, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -476337,17 +353472,12 @@ }, { "id": 24573, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -476355,17 +353485,12 @@ }, { "id": 24574, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -476373,17 +353498,12 @@ }, { "id": 24575, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -476423,26 +353543,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 24587, "states": [ { "id": 24576, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -476450,17 +353565,12 @@ }, { "id": 24577, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -476468,17 +353578,12 @@ }, { "id": 24578, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -476487,17 +353592,12 @@ }, { "id": 24579, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -476506,17 +353606,12 @@ }, { "id": 24580, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -476525,17 +353620,12 @@ }, { "id": 24581, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -476544,17 +353634,12 @@ }, { "id": 24582, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -476563,17 +353648,12 @@ }, { "id": 24583, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -476582,17 +353662,12 @@ }, { "id": 24584, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -476601,17 +353676,12 @@ }, { "id": 24585, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -476620,17 +353690,12 @@ }, { "id": 24586, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -476638,17 +353703,12 @@ }, { "id": 24587, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -476656,17 +353716,12 @@ }, { "id": 24588, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -476675,17 +353730,12 @@ }, { "id": 24589, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -476694,17 +353744,12 @@ }, { "id": 24590, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -476713,17 +353758,12 @@ }, { "id": 24591, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -476732,17 +353772,12 @@ }, { "id": 24592, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -476750,17 +353785,12 @@ }, { "id": 24593, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -476768,17 +353798,12 @@ }, { "id": 24594, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -476786,17 +353811,12 @@ }, { "id": 24595, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -476804,17 +353824,12 @@ }, { "id": 24596, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -476822,17 +353837,12 @@ }, { "id": 24597, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -476840,17 +353850,12 @@ }, { "id": 24598, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -476859,17 +353864,12 @@ }, { "id": 24599, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -476878,17 +353878,12 @@ }, { "id": 24600, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -476897,17 +353892,12 @@ }, { "id": 24601, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -476916,17 +353906,12 @@ }, { "id": 24602, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -476935,17 +353920,12 @@ }, { "id": 24603, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -476954,17 +353934,12 @@ }, { "id": 24604, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -476973,17 +353948,12 @@ }, { "id": 24605, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -476992,17 +353962,12 @@ }, { "id": 24606, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -477010,17 +353975,12 @@ }, { "id": 24607, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -477028,17 +353988,12 @@ }, { "id": 24608, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -477047,17 +354002,12 @@ }, { "id": 24609, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -477066,17 +354016,12 @@ }, { "id": 24610, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -477085,17 +354030,12 @@ }, { "id": 24611, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -477104,17 +354044,12 @@ }, { "id": 24612, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -477122,17 +354057,12 @@ }, { "id": 24613, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -477140,17 +354070,12 @@ }, { "id": 24614, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -477158,17 +354083,12 @@ }, { "id": 24615, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -477176,17 +354096,12 @@ }, { "id": 24616, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -477194,17 +354109,12 @@ }, { "id": 24617, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -477212,17 +354122,12 @@ }, { "id": 24618, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -477231,17 +354136,12 @@ }, { "id": 24619, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -477250,17 +354150,12 @@ }, { "id": 24620, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -477269,17 +354164,12 @@ }, { "id": 24621, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -477288,17 +354178,12 @@ }, { "id": 24622, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -477307,17 +354192,12 @@ }, { "id": 24623, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -477326,17 +354206,12 @@ }, { "id": 24624, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -477345,17 +354220,12 @@ }, { "id": 24625, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -477364,17 +354234,12 @@ }, { "id": 24626, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -477382,17 +354247,12 @@ }, { "id": 24627, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -477400,17 +354260,12 @@ }, { "id": 24628, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -477419,17 +354274,12 @@ }, { "id": 24629, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -477438,17 +354288,12 @@ }, { "id": 24630, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -477457,17 +354302,12 @@ }, { "id": 24631, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -477476,17 +354316,12 @@ }, { "id": 24632, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -477494,17 +354329,12 @@ }, { "id": 24633, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -477512,17 +354342,12 @@ }, { "id": 24634, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -477530,17 +354355,12 @@ }, { "id": 24635, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -477548,17 +354368,12 @@ }, { "id": 24636, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -477566,17 +354381,12 @@ }, { "id": 24637, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -477584,17 +354394,12 @@ }, { "id": 24638, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -477603,17 +354408,12 @@ }, { "id": 24639, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -477622,17 +354422,12 @@ }, { "id": 24640, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -477641,17 +354436,12 @@ }, { "id": 24641, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -477660,17 +354450,12 @@ }, { "id": 24642, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -477679,17 +354464,12 @@ }, { "id": 24643, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -477698,17 +354478,12 @@ }, { "id": 24644, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -477717,17 +354492,12 @@ }, { "id": 24645, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -477736,17 +354506,12 @@ }, { "id": 24646, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -477754,17 +354519,12 @@ }, { "id": 24647, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -477772,17 +354532,12 @@ }, { "id": 24648, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -477791,17 +354546,12 @@ }, { "id": 24649, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -477810,17 +354560,12 @@ }, { "id": 24650, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -477829,17 +354574,12 @@ }, { "id": 24651, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -477848,17 +354588,12 @@ }, { "id": 24652, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -477866,17 +354601,12 @@ }, { "id": 24653, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -477884,17 +354614,12 @@ }, { "id": 24654, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -477902,17 +354627,12 @@ }, { "id": 24655, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -477966,109 +354686,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24659, "states": [ { "id": 24656, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24657, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24658, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24659, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24660, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24661, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -478121,109 +354811,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24665, "states": [ { "id": 24662, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24663, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24664, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24665, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24666, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24667, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -478276,109 +354936,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24671, "states": [ { "id": 24668, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24669, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24670, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24671, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24672, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24673, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -478431,109 +355061,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 24677, "states": [ { "id": 24674, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24675, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 24676, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24677, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 24678, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 24679, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -478581,1034 +355181,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 24691, "states": [ { "id": 24680, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24681, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24682, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24683, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24684, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24685, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24686, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24687, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24688, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24689, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24690, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24691, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24692, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24693, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24694, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24695, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24696, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24697, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24698, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24699, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24700, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24701, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24702, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24703, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24704, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24705, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24706, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24707, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24708, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24709, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24710, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24711, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24712, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24713, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24714, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24715, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24716, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24717, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24718, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24719, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24720, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24721, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24722, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24723, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24724, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24725, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24726, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24727, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24728, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24729, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24730, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24731, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24732, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24733, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24734, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24735, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24736, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24737, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24738, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24739, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24740, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24741, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24742, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24743, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -479656,1034 +355936,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 24755, "states": [ { "id": 24744, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24745, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24746, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24747, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24748, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24749, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24750, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24751, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24752, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24753, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24754, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24755, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24756, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24757, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24758, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24759, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24760, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24761, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24762, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24763, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24764, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24765, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24766, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24767, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24768, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24769, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24770, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24771, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24772, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24773, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24774, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24775, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24776, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24777, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24778, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24779, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24780, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24781, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24782, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24783, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24784, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24785, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24786, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24787, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24788, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24789, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24790, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24791, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24792, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24793, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24794, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24795, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24796, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24797, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24798, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24799, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24800, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24801, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24802, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24803, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24804, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24805, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24806, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24807, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -480731,1034 +356691,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 24819, "states": [ { "id": 24808, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24809, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24810, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24811, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24812, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24813, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24814, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24815, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24816, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24817, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24818, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24819, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24820, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24821, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24822, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24823, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24824, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24825, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24826, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24827, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24828, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24829, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24830, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24831, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24832, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24833, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24834, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24835, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24836, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24837, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24838, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24839, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24840, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24841, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24842, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24843, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24844, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24845, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24846, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24847, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24848, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24849, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24850, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24851, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24852, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24853, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24854, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24855, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24856, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24857, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24858, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24859, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24860, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24861, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24862, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24863, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24864, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24865, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24866, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24867, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24868, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24869, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24870, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24871, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -481806,1034 +357446,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 24883, "states": [ { "id": 24872, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24873, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24874, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24875, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24876, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24877, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24878, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24879, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24880, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24881, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24882, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24883, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24884, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24885, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24886, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24887, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24888, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24889, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24890, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24891, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24892, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24893, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24894, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24895, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24896, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24897, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24898, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24899, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24900, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24901, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24902, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24903, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24904, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24905, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24906, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24907, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24908, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24909, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24910, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24911, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24912, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24913, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24914, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24915, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24916, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24917, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24918, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24919, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24920, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24921, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24922, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24923, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24924, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24925, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24926, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24927, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24928, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24929, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24930, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24931, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24932, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24933, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24934, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24935, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -482881,1034 +358201,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 24947, "states": [ { "id": 24936, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24937, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24938, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24939, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24940, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24941, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24942, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24943, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24944, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24945, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24946, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24947, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24948, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24949, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24950, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24951, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24952, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24953, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24954, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24955, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24956, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24957, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24958, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24959, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24960, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24961, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24962, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24963, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24964, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24965, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24966, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24967, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24968, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24969, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24970, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24971, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24972, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24973, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24974, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24975, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24976, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24977, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24978, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24979, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24980, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24981, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24982, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24983, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 24984, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24985, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24986, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24987, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24988, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24989, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24990, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24991, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24992, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24993, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 24994, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24995, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24996, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24997, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 24998, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 24999, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -483956,1034 +358956,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 25011, "states": [ { "id": 25000, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25001, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25002, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25003, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25004, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25005, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25006, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25007, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25008, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25009, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25010, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25011, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25012, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25013, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25014, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25015, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25016, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25017, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25018, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25019, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25020, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25021, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25022, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25023, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25024, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25025, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25026, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25027, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25028, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25029, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25030, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25031, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25032, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25033, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25034, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25035, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25036, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25037, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25038, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25039, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25040, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25041, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25042, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25043, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25044, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25045, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25046, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25047, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25048, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25049, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25050, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25051, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25052, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25053, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25054, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25055, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25056, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25057, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25058, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25059, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25060, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25061, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25062, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25063, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -485031,1034 +359711,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 25075, "states": [ { "id": 25064, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25065, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25066, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25067, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25068, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25069, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25070, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25071, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25072, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25073, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25074, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25075, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25076, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25077, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25078, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25079, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25080, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25081, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25082, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25083, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25084, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25085, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25086, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25087, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25088, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25089, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25090, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25091, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25092, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25093, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25094, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25095, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25096, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25097, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25098, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25099, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25100, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25101, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25102, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25103, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25104, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25105, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25106, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25107, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25108, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25109, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25110, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25111, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25112, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25113, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25114, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25115, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25116, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25117, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25118, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25119, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25120, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25121, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25122, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25123, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25124, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25125, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25126, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25127, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -486106,1034 +360466,714 @@ ] }, "properties": [ - -1870206692, - -771186830, - 1361276694, - -242710423, - -634074493 + 1877134791, + 833894292, + -184884443, + -49286536, + -440650606 ], "default_state_id": 25139, "states": [ { "id": 25128, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25129, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25130, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25131, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25132, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25133, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25134, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25135, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25136, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25137, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25138, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25139, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25140, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25141, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25142, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25143, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25144, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25145, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25146, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25147, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25148, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25149, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25150, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25151, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25152, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25153, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25154, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25155, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25156, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25157, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25158, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25159, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25160, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25161, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25162, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25163, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25164, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25165, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25166, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25167, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25168, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25169, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25170, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25171, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25172, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25173, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25174, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25175, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25176, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25177, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25178, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25179, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25180, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25181, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25182, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25183, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25184, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25185, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25186, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25187, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25188, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25189, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25190, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25191, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] @@ -487172,1034 +361212,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25207, "states": [ { "id": 25192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -488238,1034 +361958,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25271, "states": [ { "id": 25256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -489304,1034 +362704,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25335, "states": [ { "id": 25320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -490370,1034 +363450,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25399, "states": [ { "id": 25384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -491436,1034 +364196,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25463, "states": [ { "id": 25448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -492502,1034 +364942,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25527, "states": [ { "id": 25512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -493568,1034 +365688,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25591, "states": [ { "id": 25576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -494634,1034 +366434,714 @@ ] }, "properties": [ - -1870206692, - 1572277146, - -242710423, - -634074493, - 795783032 + 1877134791, + 1520831296, + -49286536, + -440650606, + 989206919 ], "default_state_id": 25655, "states": [ { "id": 25640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 65 ] }, { "id": 25652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 67 ] }, { "id": 25668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 66 ] }, { "id": 25684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 92 ] }, { "id": 25696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { "id": 25700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] }, { "id": 25703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -495700,38 +367180,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25705, "states": [ { "id": 25704, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25705, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -495770,38 +367240,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25707, "states": [ { "id": 25706, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25707, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -495840,38 +367300,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25709, "states": [ { "id": 25708, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25709, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -495910,38 +367360,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25711, "states": [ { "id": 25710, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25711, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -495980,38 +367420,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25713, "states": [ { "id": 25712, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25713, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496050,38 +367480,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25715, "states": [ { "id": 25714, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25715, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496120,38 +367540,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25717, "states": [ { "id": 25716, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25717, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496190,38 +367600,28 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25719, "states": [ { "id": 25718, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25719, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496260,75 +367660,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25723, "states": [ { "id": 25720, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25721, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25722, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25723, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496367,75 +367747,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25727, "states": [ { "id": 25724, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25725, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25726, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25727, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496474,75 +367834,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25731, "states": [ { "id": 25728, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25729, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25730, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25731, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496581,75 +367921,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25735, "states": [ { "id": 25732, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25733, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25734, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25735, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496688,75 +368008,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25739, "states": [ { "id": 25736, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25737, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25738, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25739, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496795,75 +368095,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25743, "states": [ { "id": 25740, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25741, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25742, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25743, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -496902,75 +368182,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25747, "states": [ { "id": 25744, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25745, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25746, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25747, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -497009,75 +368269,55 @@ ] }, "properties": [ - -246020938, - -634074493 + -52597051, + -440650606 ], "default_state_id": 25751, "states": [ { "id": 25748, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25749, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25750, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25751, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -497116,392 +368356,272 @@ ] }, "properties": [ - 1627058566, - -634074493, - 795783032 + 2060047744, + -440650606, + 989206919 ], "default_state_id": 25771, "states": [ { "id": 25752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 203 ] }, { "id": 25764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 204 ] }, { "id": 25768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] }, { "id": 25775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32 ] @@ -497540,328 +368660,228 @@ ] }, "properties": [ - 1046549030, - 554748355, - 795783032 + 1349355829, + 1973640329, + 989206919 ], "default_state_id": 25781, "states": [ { "id": 25776, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 332 ] }, { "id": 25777, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 332 ] }, { "id": 25778, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 332 ] }, { "id": 25779, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 332 ] }, { "id": 25780, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 333 ] }, { "id": 25781, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 333 ] }, { "id": 25782, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 334 ] }, { "id": 25783, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 334 ] }, { "id": 25784, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 335 ] }, { "id": 25785, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 335 ] }, { "id": 25786, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 335 ] }, { "id": 25787, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 335 ] }, { "id": 25788, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 336 ] }, { "id": 25789, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 336 ] }, { "id": 25790, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 336 ] }, { "id": 25791, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 336 ] }, { "id": 25792, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 337 ] }, { "id": 25793, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 337 ] }, { "id": 25794, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 337 ] }, { "id": 25795, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 1.5, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 337 ] @@ -497904,17 +368924,12 @@ "states": [ { "id": 25796, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -497957,737 +368972,477 @@ ] }, "properties": [ - 169292927, - -464754605 + -475555242, + -271330718 ], "default_state_id": 25798, "states": [ { "id": 25797, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25798, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25799, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25800, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25801, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25802, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25803, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25804, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25805, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25806, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25807, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25808, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25809, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25810, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25811, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25812, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25813, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25814, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25815, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25816, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25817, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25818, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25819, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25820, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25821, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25822, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25823, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25824, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25825, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25826, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25827, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25828, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25829, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25830, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25831, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25832, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25833, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25834, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25835, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25836, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25837, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25838, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25839, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25840, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25841, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25842, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25843, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25844, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25845, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25846, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25847, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25848, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -498728,36 +369483,26 @@ ] }, "properties": [ - -464754605 + -271330718 ], "default_state_id": 25850, "states": [ { "id": 25849, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 14, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25850, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -498798,16 +369543,11 @@ "states": [ { "id": 25851, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -498848,16 +369588,11 @@ "states": [ { "id": 25852, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32, 338, @@ -498904,16 +369639,11 @@ "states": [ { "id": 25853, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 32, 338, @@ -498960,17 +369690,12 @@ "states": [ { "id": 25854, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] @@ -499065,233 +369790,153 @@ ] }, "properties": [ - -1870206692, - -21943977 + 1877134791, + -666792146 ], "default_state_id": 25855, "states": [ { "id": 25855, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25856, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25857, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25858, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25859, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25860, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25861, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25862, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25863, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25864, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25865, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25866, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25867, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25868, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25869, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25870, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -499384,233 +370029,153 @@ ] }, "properties": [ - -1870206692, - -21943977 + 1877134791, + -666792146 ], "default_state_id": 25871, "states": [ { "id": 25871, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25872, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25873, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25874, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25875, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25876, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25877, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25878, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25879, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25880, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25881, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25882, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25883, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25884, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25885, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25886, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -499703,233 +370268,153 @@ ] }, "properties": [ - -1870206692, - 159053359 + 1877134791, + -485794810 ], "default_state_id": 25887, "states": [ { "id": 25887, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25888, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25889, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25890, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25891, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25892, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25893, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25894, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25895, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25896, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25897, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25898, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25899, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25900, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25901, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25902, - "air": false, - "is_solid": false, + "state_flags": 16, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -499970,17 +370455,12 @@ "states": [ { "id": 25903, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -500019,538 +370499,378 @@ ] }, "properties": [ - -1870206692, - 209513650, - 795783032 + 1877134791, + -488886738, + 989206919 ], "default_state_id": 25905, "states": [ { "id": 25904, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25905, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25906, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25907, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25908, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25909, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25910, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25911, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25912, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25913, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25914, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25915, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25916, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25917, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25918, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25919, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25920, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25921, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25922, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25923, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25924, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25925, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25926, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25927, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25928, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25929, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25930, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25931, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 342 ] }, { "id": 25932, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25933, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 343 ] }, { "id": 25934, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25935, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -500587,121 +370907,81 @@ ] }, "properties": [ - -1870206692, - 795783032 + 1877134791, + 989206919 ], "default_state_id": 25937, "states": [ { "id": 25936, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25937, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25938, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25939, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25940, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25941, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25942, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25943, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -500741,234 +371021,154 @@ ] }, "properties": [ - -1870206692, - -771186830, - 795783032 + 1877134791, + 833894292, + 989206919 ], "default_state_id": 25947, "states": [ { "id": 25944, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25945, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25946, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25947, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25948, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25949, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25950, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25951, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25952, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25953, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25954, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25955, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25956, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25957, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25958, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 25959, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -501008,36 +371208,26 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 25961, "states": [ { "id": 25960, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] }, { "id": 25961, - "air": false, - "is_solid": false, + "state_flags": 18, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": true, "collision_shapes": [] } ] @@ -501078,17 +371268,12 @@ "states": [ { "id": 25962, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -501131,17 +371316,12 @@ "states": [ { "id": 25963, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 73 ] @@ -501206,57 +371386,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 25965, "states": [ { "id": 25964, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25965, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 25966, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -501299,17 +371464,12 @@ "states": [ { "id": 25967, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -501348,26 +371508,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 25979, "states": [ { "id": 25968, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -501375,17 +371530,12 @@ }, { "id": 25969, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -501393,17 +371543,12 @@ }, { "id": 25970, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -501412,17 +371557,12 @@ }, { "id": 25971, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -501431,17 +371571,12 @@ }, { "id": 25972, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -501450,17 +371585,12 @@ }, { "id": 25973, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -501469,17 +371599,12 @@ }, { "id": 25974, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -501488,17 +371613,12 @@ }, { "id": 25975, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -501507,17 +371627,12 @@ }, { "id": 25976, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -501526,17 +371641,12 @@ }, { "id": 25977, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -501545,17 +371655,12 @@ }, { "id": 25978, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -501563,17 +371668,12 @@ }, { "id": 25979, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -501581,17 +371681,12 @@ }, { "id": 25980, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -501600,17 +371695,12 @@ }, { "id": 25981, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -501619,17 +371709,12 @@ }, { "id": 25982, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -501638,17 +371723,12 @@ }, { "id": 25983, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -501657,17 +371737,12 @@ }, { "id": 25984, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -501675,17 +371750,12 @@ }, { "id": 25985, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -501693,17 +371763,12 @@ }, { "id": 25986, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -501711,17 +371776,12 @@ }, { "id": 25987, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -501729,17 +371789,12 @@ }, { "id": 25988, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -501747,17 +371802,12 @@ }, { "id": 25989, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -501765,17 +371815,12 @@ }, { "id": 25990, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -501784,17 +371829,12 @@ }, { "id": 25991, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -501803,17 +371843,12 @@ }, { "id": 25992, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -501822,17 +371857,12 @@ }, { "id": 25993, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -501841,17 +371871,12 @@ }, { "id": 25994, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -501860,17 +371885,12 @@ }, { "id": 25995, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -501879,17 +371899,12 @@ }, { "id": 25996, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -501898,17 +371913,12 @@ }, { "id": 25997, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -501917,17 +371927,12 @@ }, { "id": 25998, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -501935,17 +371940,12 @@ }, { "id": 25999, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -501953,17 +371953,12 @@ }, { "id": 26000, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -501972,17 +371967,12 @@ }, { "id": 26001, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -501991,17 +371981,12 @@ }, { "id": 26002, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -502010,17 +371995,12 @@ }, { "id": 26003, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -502029,17 +372009,12 @@ }, { "id": 26004, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -502047,17 +372022,12 @@ }, { "id": 26005, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -502065,17 +372035,12 @@ }, { "id": 26006, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -502083,17 +372048,12 @@ }, { "id": 26007, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -502101,17 +372061,12 @@ }, { "id": 26008, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -502119,17 +372074,12 @@ }, { "id": 26009, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -502137,17 +372087,12 @@ }, { "id": 26010, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -502156,17 +372101,12 @@ }, { "id": 26011, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -502175,17 +372115,12 @@ }, { "id": 26012, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -502194,17 +372129,12 @@ }, { "id": 26013, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -502213,17 +372143,12 @@ }, { "id": 26014, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -502232,17 +372157,12 @@ }, { "id": 26015, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -502251,17 +372171,12 @@ }, { "id": 26016, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -502270,17 +372185,12 @@ }, { "id": 26017, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -502289,17 +372199,12 @@ }, { "id": 26018, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -502307,17 +372212,12 @@ }, { "id": 26019, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -502325,17 +372225,12 @@ }, { "id": 26020, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -502344,17 +372239,12 @@ }, { "id": 26021, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -502363,17 +372253,12 @@ }, { "id": 26022, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -502382,17 +372267,12 @@ }, { "id": 26023, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -502401,17 +372281,12 @@ }, { "id": 26024, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -502419,17 +372294,12 @@ }, { "id": 26025, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -502437,17 +372307,12 @@ }, { "id": 26026, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -502455,17 +372320,12 @@ }, { "id": 26027, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -502473,17 +372333,12 @@ }, { "id": 26028, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -502491,17 +372346,12 @@ }, { "id": 26029, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -502509,17 +372359,12 @@ }, { "id": 26030, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -502528,17 +372373,12 @@ }, { "id": 26031, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -502547,17 +372387,12 @@ }, { "id": 26032, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -502566,17 +372401,12 @@ }, { "id": 26033, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -502585,17 +372415,12 @@ }, { "id": 26034, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -502604,17 +372429,12 @@ }, { "id": 26035, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -502623,17 +372443,12 @@ }, { "id": 26036, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -502642,17 +372457,12 @@ }, { "id": 26037, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -502661,17 +372471,12 @@ }, { "id": 26038, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -502679,17 +372484,12 @@ }, { "id": 26039, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -502697,17 +372497,12 @@ }, { "id": 26040, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -502716,17 +372511,12 @@ }, { "id": 26041, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -502735,17 +372525,12 @@ }, { "id": 26042, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -502754,17 +372539,12 @@ }, { "id": 26043, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -502773,17 +372553,12 @@ }, { "id": 26044, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -502791,17 +372566,12 @@ }, { "id": 26045, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -502809,17 +372579,12 @@ }, { "id": 26046, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -502827,17 +372592,12 @@ }, { "id": 26047, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -502891,109 +372651,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 26051, "states": [ { "id": 26048, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 26049, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 26050, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 26051, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 26052, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 26053, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -503032,45 +372762,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 26057, "states": [ { "id": 26054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 26055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503079,17 +372799,12 @@ }, { "id": 26056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503098,34 +372813,24 @@ }, { "id": 26057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 26058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503134,17 +372839,12 @@ }, { "id": 26059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503153,115 +372853,80 @@ }, { "id": 26060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 26061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 26064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -503269,17 +372934,12 @@ }, { "id": 26067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503289,17 +372949,12 @@ }, { "id": 26068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503309,17 +372964,12 @@ }, { "id": 26069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -503327,17 +372977,12 @@ }, { "id": 26070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503347,17 +372992,12 @@ }, { "id": 26071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503367,34 +373007,24 @@ }, { "id": 26072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503402,17 +373032,12 @@ }, { "id": 26074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503420,34 +373045,24 @@ }, { "id": 26075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503455,17 +373070,12 @@ }, { "id": 26077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503473,17 +373083,12 @@ }, { "id": 26078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -503491,17 +373096,12 @@ }, { "id": 26079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503511,17 +373111,12 @@ }, { "id": 26080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503531,17 +373126,12 @@ }, { "id": 26081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -503549,17 +373139,12 @@ }, { "id": 26082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503569,17 +373154,12 @@ }, { "id": 26083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503589,34 +373169,24 @@ }, { "id": 26084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503624,17 +373194,12 @@ }, { "id": 26086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503642,34 +373207,24 @@ }, { "id": 26087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503677,17 +373232,12 @@ }, { "id": 26089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -503695,17 +373245,12 @@ }, { "id": 26090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -503713,17 +373258,12 @@ }, { "id": 26091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503733,17 +373273,12 @@ }, { "id": 26092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503753,17 +373288,12 @@ }, { "id": 26093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -503771,17 +373301,12 @@ }, { "id": 26094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503791,17 +373316,12 @@ }, { "id": 26095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503811,34 +373331,24 @@ }, { "id": 26096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -503846,17 +373356,12 @@ }, { "id": 26098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -503864,34 +373369,24 @@ }, { "id": 26099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -503899,17 +373394,12 @@ }, { "id": 26101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -503917,17 +373407,12 @@ }, { "id": 26102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -503936,17 +373421,12 @@ }, { "id": 26103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503957,17 +373437,12 @@ }, { "id": 26104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -503978,17 +373453,12 @@ }, { "id": 26105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -503997,17 +373467,12 @@ }, { "id": 26106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504018,17 +373483,12 @@ }, { "id": 26107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504039,34 +373499,24 @@ }, { "id": 26108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504075,17 +373525,12 @@ }, { "id": 26110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504094,34 +373539,24 @@ }, { "id": 26111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504130,17 +373565,12 @@ }, { "id": 26113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504149,17 +373579,12 @@ }, { "id": 26114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -504168,17 +373593,12 @@ }, { "id": 26115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504189,17 +373609,12 @@ }, { "id": 26116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504210,17 +373625,12 @@ }, { "id": 26117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -504229,17 +373639,12 @@ }, { "id": 26118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504250,17 +373655,12 @@ }, { "id": 26119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504271,34 +373671,24 @@ }, { "id": 26120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504307,17 +373697,12 @@ }, { "id": 26122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504326,34 +373711,24 @@ }, { "id": 26123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504362,17 +373737,12 @@ }, { "id": 26125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504381,17 +373751,12 @@ }, { "id": 26126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -504399,17 +373764,12 @@ }, { "id": 26127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504419,17 +373779,12 @@ }, { "id": 26128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504439,17 +373794,12 @@ }, { "id": 26129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -504457,17 +373807,12 @@ }, { "id": 26130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504477,17 +373822,12 @@ }, { "id": 26131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504497,34 +373837,24 @@ }, { "id": 26132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -504532,17 +373862,12 @@ }, { "id": 26134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -504550,34 +373875,24 @@ }, { "id": 26135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -504585,17 +373900,12 @@ }, { "id": 26137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -504603,17 +373913,12 @@ }, { "id": 26138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -504622,17 +373927,12 @@ }, { "id": 26139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504643,17 +373943,12 @@ }, { "id": 26140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504664,17 +373959,12 @@ }, { "id": 26141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -504683,17 +373973,12 @@ }, { "id": 26142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504704,17 +373989,12 @@ }, { "id": 26143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504725,34 +374005,24 @@ }, { "id": 26144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504761,17 +374031,12 @@ }, { "id": 26146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504780,34 +374045,24 @@ }, { "id": 26147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504816,17 +374071,12 @@ }, { "id": 26149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504835,17 +374085,12 @@ }, { "id": 26150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -504854,17 +374099,12 @@ }, { "id": 26151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504875,17 +374115,12 @@ }, { "id": 26152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504896,17 +374131,12 @@ }, { "id": 26153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -504915,17 +374145,12 @@ }, { "id": 26154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504936,17 +374161,12 @@ }, { "id": 26155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -504957,34 +374177,24 @@ }, { "id": 26156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -504993,17 +374203,12 @@ }, { "id": 26158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -505012,34 +374217,24 @@ }, { "id": 26159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -505048,17 +374243,12 @@ }, { "id": 26161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -505067,17 +374257,12 @@ }, { "id": 26162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -505085,17 +374270,12 @@ }, { "id": 26163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505104,17 +374284,12 @@ }, { "id": 26164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505123,17 +374298,12 @@ }, { "id": 26165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -505141,17 +374311,12 @@ }, { "id": 26166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505160,17 +374325,12 @@ }, { "id": 26167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505179,119 +374339,84 @@ }, { "id": 26168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -505300,17 +374425,12 @@ }, { "id": 26175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505320,17 +374440,12 @@ }, { "id": 26176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505340,17 +374455,12 @@ }, { "id": 26177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -505359,17 +374469,12 @@ }, { "id": 26178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505379,17 +374484,12 @@ }, { "id": 26179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505399,17 +374499,12 @@ }, { "id": 26180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -505417,17 +374512,12 @@ }, { "id": 26181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505435,17 +374525,12 @@ }, { "id": 26182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505453,17 +374538,12 @@ }, { "id": 26183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -505471,17 +374551,12 @@ }, { "id": 26184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505489,17 +374564,12 @@ }, { "id": 26185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505507,17 +374577,12 @@ }, { "id": 26186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -505526,17 +374591,12 @@ }, { "id": 26187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505546,17 +374606,12 @@ }, { "id": 26188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505566,17 +374621,12 @@ }, { "id": 26189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -505585,17 +374635,12 @@ }, { "id": 26190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505605,17 +374650,12 @@ }, { "id": 26191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505625,17 +374665,12 @@ }, { "id": 26192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -505643,17 +374678,12 @@ }, { "id": 26193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505661,17 +374691,12 @@ }, { "id": 26194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505679,17 +374704,12 @@ }, { "id": 26195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -505697,17 +374717,12 @@ }, { "id": 26196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505715,17 +374730,12 @@ }, { "id": 26197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -505733,17 +374743,12 @@ }, { "id": 26198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -505752,17 +374757,12 @@ }, { "id": 26199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505772,17 +374772,12 @@ }, { "id": 26200, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505792,17 +374787,12 @@ }, { "id": 26201, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -505811,17 +374801,12 @@ }, { "id": 26202, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505831,17 +374816,12 @@ }, { "id": 26203, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -505851,17 +374831,12 @@ }, { "id": 26204, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -505869,17 +374844,12 @@ }, { "id": 26205, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -505887,17 +374857,12 @@ }, { "id": 26206, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -505905,17 +374870,12 @@ }, { "id": 26207, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -505923,17 +374883,12 @@ }, { "id": 26208, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -505941,17 +374896,12 @@ }, { "id": 26209, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -505959,17 +374909,12 @@ }, { "id": 26210, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -505979,17 +374924,12 @@ }, { "id": 26211, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506000,17 +374940,12 @@ }, { "id": 26212, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506021,17 +374956,12 @@ }, { "id": 26213, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506041,17 +374971,12 @@ }, { "id": 26214, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506062,17 +374987,12 @@ }, { "id": 26215, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506083,17 +375003,12 @@ }, { "id": 26216, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -506101,17 +375016,12 @@ }, { "id": 26217, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506120,17 +375030,12 @@ }, { "id": 26218, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506139,17 +375044,12 @@ }, { "id": 26219, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -506157,17 +375057,12 @@ }, { "id": 26220, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506176,17 +375071,12 @@ }, { "id": 26221, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506195,17 +375085,12 @@ }, { "id": 26222, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506215,17 +375100,12 @@ }, { "id": 26223, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506236,17 +375116,12 @@ }, { "id": 26224, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506257,17 +375132,12 @@ }, { "id": 26225, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506277,17 +375147,12 @@ }, { "id": 26226, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506298,17 +375163,12 @@ }, { "id": 26227, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506319,17 +375179,12 @@ }, { "id": 26228, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -506337,17 +375192,12 @@ }, { "id": 26229, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506356,17 +375206,12 @@ }, { "id": 26230, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506375,17 +375220,12 @@ }, { "id": 26231, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -506393,17 +375233,12 @@ }, { "id": 26232, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506412,17 +375247,12 @@ }, { "id": 26233, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506431,17 +375261,12 @@ }, { "id": 26234, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506450,17 +375275,12 @@ }, { "id": 26235, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506470,17 +375290,12 @@ }, { "id": 26236, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506490,17 +375305,12 @@ }, { "id": 26237, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506509,17 +375319,12 @@ }, { "id": 26238, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506529,17 +375334,12 @@ }, { "id": 26239, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506549,17 +375349,12 @@ }, { "id": 26240, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -506567,17 +375362,12 @@ }, { "id": 26241, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -506585,17 +375375,12 @@ }, { "id": 26242, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -506603,17 +375388,12 @@ }, { "id": 26243, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -506621,17 +375401,12 @@ }, { "id": 26244, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -506639,17 +375414,12 @@ }, { "id": 26245, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -506657,17 +375427,12 @@ }, { "id": 26246, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506677,17 +375442,12 @@ }, { "id": 26247, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506698,17 +375458,12 @@ }, { "id": 26248, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506719,17 +375474,12 @@ }, { "id": 26249, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506739,17 +375489,12 @@ }, { "id": 26250, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506760,17 +375505,12 @@ }, { "id": 26251, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506781,17 +375521,12 @@ }, { "id": 26252, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -506799,17 +375534,12 @@ }, { "id": 26253, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506818,17 +375548,12 @@ }, { "id": 26254, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506837,17 +375562,12 @@ }, { "id": 26255, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -506855,17 +375575,12 @@ }, { "id": 26256, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506874,17 +375589,12 @@ }, { "id": 26257, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -506893,17 +375603,12 @@ }, { "id": 26258, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506913,17 +375618,12 @@ }, { "id": 26259, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506934,17 +375634,12 @@ }, { "id": 26260, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506955,17 +375650,12 @@ }, { "id": 26261, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -506975,17 +375665,12 @@ }, { "id": 26262, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -506996,17 +375681,12 @@ }, { "id": 26263, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507017,17 +375697,12 @@ }, { "id": 26264, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -507035,17 +375710,12 @@ }, { "id": 26265, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -507054,17 +375724,12 @@ }, { "id": 26266, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -507073,17 +375738,12 @@ }, { "id": 26267, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -507091,17 +375751,12 @@ }, { "id": 26268, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -507110,17 +375765,12 @@ }, { "id": 26269, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -507129,17 +375779,12 @@ }, { "id": 26270, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -507147,17 +375792,12 @@ }, { "id": 26271, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507166,17 +375806,12 @@ }, { "id": 26272, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507185,17 +375820,12 @@ }, { "id": 26273, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -507203,17 +375833,12 @@ }, { "id": 26274, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507222,17 +375847,12 @@ }, { "id": 26275, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507241,119 +375861,84 @@ }, { "id": 26276, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26277, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26278, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26279, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26280, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26281, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26282, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -507362,17 +375947,12 @@ }, { "id": 26283, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507382,17 +375962,12 @@ }, { "id": 26284, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507402,17 +375977,12 @@ }, { "id": 26285, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -507421,17 +375991,12 @@ }, { "id": 26286, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507441,17 +376006,12 @@ }, { "id": 26287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507461,17 +376021,12 @@ }, { "id": 26288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -507479,17 +376034,12 @@ }, { "id": 26289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507497,17 +376047,12 @@ }, { "id": 26290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507515,17 +376060,12 @@ }, { "id": 26291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -507533,17 +376073,12 @@ }, { "id": 26292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507551,17 +376086,12 @@ }, { "id": 26293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507569,17 +376099,12 @@ }, { "id": 26294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -507588,17 +376113,12 @@ }, { "id": 26295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507608,17 +376128,12 @@ }, { "id": 26296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507628,17 +376143,12 @@ }, { "id": 26297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -507647,17 +376157,12 @@ }, { "id": 26298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507667,17 +376172,12 @@ }, { "id": 26299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507687,17 +376187,12 @@ }, { "id": 26300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -507705,17 +376200,12 @@ }, { "id": 26301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507723,17 +376213,12 @@ }, { "id": 26302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507741,17 +376226,12 @@ }, { "id": 26303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -507759,17 +376239,12 @@ }, { "id": 26304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507777,17 +376252,12 @@ }, { "id": 26305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -507795,17 +376265,12 @@ }, { "id": 26306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -507814,17 +376279,12 @@ }, { "id": 26307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507834,17 +376294,12 @@ }, { "id": 26308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507854,17 +376309,12 @@ }, { "id": 26309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -507873,17 +376323,12 @@ }, { "id": 26310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507893,17 +376338,12 @@ }, { "id": 26311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -507913,17 +376353,12 @@ }, { "id": 26312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -507931,17 +376366,12 @@ }, { "id": 26313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -507949,17 +376379,12 @@ }, { "id": 26314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -507967,17 +376392,12 @@ }, { "id": 26315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -507985,17 +376405,12 @@ }, { "id": 26316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -508003,17 +376418,12 @@ }, { "id": 26317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -508021,17 +376431,12 @@ }, { "id": 26318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508041,17 +376446,12 @@ }, { "id": 26319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508062,17 +376462,12 @@ }, { "id": 26320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508083,17 +376478,12 @@ }, { "id": 26321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508103,17 +376493,12 @@ }, { "id": 26322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508124,17 +376509,12 @@ }, { "id": 26323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508145,17 +376525,12 @@ }, { "id": 26324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -508163,17 +376538,12 @@ }, { "id": 26325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508182,17 +376552,12 @@ }, { "id": 26326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508201,17 +376566,12 @@ }, { "id": 26327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -508219,17 +376579,12 @@ }, { "id": 26328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508238,17 +376593,12 @@ }, { "id": 26329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508257,17 +376607,12 @@ }, { "id": 26330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508277,17 +376622,12 @@ }, { "id": 26331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508298,17 +376638,12 @@ }, { "id": 26332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508319,17 +376654,12 @@ }, { "id": 26333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508339,17 +376669,12 @@ }, { "id": 26334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508360,17 +376685,12 @@ }, { "id": 26335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508381,17 +376701,12 @@ }, { "id": 26336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -508399,17 +376714,12 @@ }, { "id": 26337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508418,17 +376728,12 @@ }, { "id": 26338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508437,17 +376742,12 @@ }, { "id": 26339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -508455,17 +376755,12 @@ }, { "id": 26340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508474,17 +376769,12 @@ }, { "id": 26341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508493,17 +376783,12 @@ }, { "id": 26342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508512,17 +376797,12 @@ }, { "id": 26343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508532,17 +376812,12 @@ }, { "id": 26344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508552,17 +376827,12 @@ }, { "id": 26345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508571,17 +376841,12 @@ }, { "id": 26346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508591,17 +376856,12 @@ }, { "id": 26347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508611,17 +376871,12 @@ }, { "id": 26348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -508629,17 +376884,12 @@ }, { "id": 26349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -508647,17 +376897,12 @@ }, { "id": 26350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -508665,17 +376910,12 @@ }, { "id": 26351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -508683,17 +376923,12 @@ }, { "id": 26352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -508701,17 +376936,12 @@ }, { "id": 26353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -508719,17 +376949,12 @@ }, { "id": 26354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508739,17 +376964,12 @@ }, { "id": 26355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508760,17 +376980,12 @@ }, { "id": 26356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508781,17 +376996,12 @@ }, { "id": 26357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508801,17 +377011,12 @@ }, { "id": 26358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508822,17 +377027,12 @@ }, { "id": 26359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508843,17 +377043,12 @@ }, { "id": 26360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -508861,17 +377056,12 @@ }, { "id": 26361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508880,17 +377070,12 @@ }, { "id": 26362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508899,17 +377084,12 @@ }, { "id": 26363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -508917,17 +377097,12 @@ }, { "id": 26364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508936,17 +377111,12 @@ }, { "id": 26365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -508955,17 +377125,12 @@ }, { "id": 26366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -508975,17 +377140,12 @@ }, { "id": 26367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -508996,17 +377156,12 @@ }, { "id": 26368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -509017,17 +377172,12 @@ }, { "id": 26369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -509037,17 +377187,12 @@ }, { "id": 26370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -509058,17 +377203,12 @@ }, { "id": 26371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -509079,17 +377219,12 @@ }, { "id": 26372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -509097,17 +377232,12 @@ }, { "id": 26373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -509116,17 +377246,12 @@ }, { "id": 26374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -509135,17 +377260,12 @@ }, { "id": 26375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -509153,17 +377273,12 @@ }, { "id": 26376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -509172,17 +377287,12 @@ }, { "id": 26377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -509227,17 +377337,12 @@ "states": [ { "id": 26378, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -509276,26 +377381,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 26390, "states": [ { "id": 26379, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -509303,17 +377403,12 @@ }, { "id": 26380, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -509321,17 +377416,12 @@ }, { "id": 26381, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -509340,17 +377430,12 @@ }, { "id": 26382, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -509359,17 +377444,12 @@ }, { "id": 26383, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -509378,17 +377458,12 @@ }, { "id": 26384, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -509397,17 +377472,12 @@ }, { "id": 26385, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -509416,17 +377486,12 @@ }, { "id": 26386, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -509435,17 +377500,12 @@ }, { "id": 26387, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -509454,17 +377514,12 @@ }, { "id": 26388, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -509473,17 +377528,12 @@ }, { "id": 26389, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -509491,17 +377541,12 @@ }, { "id": 26390, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -509509,17 +377554,12 @@ }, { "id": 26391, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -509528,17 +377568,12 @@ }, { "id": 26392, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -509547,17 +377582,12 @@ }, { "id": 26393, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -509566,17 +377596,12 @@ }, { "id": 26394, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -509585,17 +377610,12 @@ }, { "id": 26395, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -509603,17 +377623,12 @@ }, { "id": 26396, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -509621,17 +377636,12 @@ }, { "id": 26397, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -509639,17 +377649,12 @@ }, { "id": 26398, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -509657,17 +377662,12 @@ }, { "id": 26399, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -509675,17 +377675,12 @@ }, { "id": 26400, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -509693,17 +377688,12 @@ }, { "id": 26401, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -509712,17 +377702,12 @@ }, { "id": 26402, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -509731,17 +377716,12 @@ }, { "id": 26403, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -509750,17 +377730,12 @@ }, { "id": 26404, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -509769,17 +377744,12 @@ }, { "id": 26405, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -509788,17 +377758,12 @@ }, { "id": 26406, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -509807,17 +377772,12 @@ }, { "id": 26407, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -509826,17 +377786,12 @@ }, { "id": 26408, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -509845,17 +377800,12 @@ }, { "id": 26409, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -509863,17 +377813,12 @@ }, { "id": 26410, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -509881,17 +377826,12 @@ }, { "id": 26411, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -509900,17 +377840,12 @@ }, { "id": 26412, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -509919,17 +377854,12 @@ }, { "id": 26413, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -509938,17 +377868,12 @@ }, { "id": 26414, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -509957,17 +377882,12 @@ }, { "id": 26415, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -509975,17 +377895,12 @@ }, { "id": 26416, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -509993,17 +377908,12 @@ }, { "id": 26417, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -510011,17 +377921,12 @@ }, { "id": 26418, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -510029,17 +377934,12 @@ }, { "id": 26419, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -510047,17 +377947,12 @@ }, { "id": 26420, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -510065,17 +377960,12 @@ }, { "id": 26421, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -510084,17 +377974,12 @@ }, { "id": 26422, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -510103,17 +377988,12 @@ }, { "id": 26423, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -510122,17 +378002,12 @@ }, { "id": 26424, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -510141,17 +378016,12 @@ }, { "id": 26425, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -510160,17 +378030,12 @@ }, { "id": 26426, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -510179,17 +378044,12 @@ }, { "id": 26427, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -510198,17 +378058,12 @@ }, { "id": 26428, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -510217,17 +378072,12 @@ }, { "id": 26429, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -510235,17 +378085,12 @@ }, { "id": 26430, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -510253,17 +378098,12 @@ }, { "id": 26431, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -510272,17 +378112,12 @@ }, { "id": 26432, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -510291,17 +378126,12 @@ }, { "id": 26433, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -510310,17 +378140,12 @@ }, { "id": 26434, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -510329,17 +378154,12 @@ }, { "id": 26435, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -510347,17 +378167,12 @@ }, { "id": 26436, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -510365,17 +378180,12 @@ }, { "id": 26437, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -510383,17 +378193,12 @@ }, { "id": 26438, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -510401,17 +378206,12 @@ }, { "id": 26439, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -510419,17 +378219,12 @@ }, { "id": 26440, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -510437,17 +378232,12 @@ }, { "id": 26441, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -510456,17 +378246,12 @@ }, { "id": 26442, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -510475,17 +378260,12 @@ }, { "id": 26443, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -510494,17 +378274,12 @@ }, { "id": 26444, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -510513,17 +378288,12 @@ }, { "id": 26445, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -510532,17 +378302,12 @@ }, { "id": 26446, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -510551,17 +378316,12 @@ }, { "id": 26447, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -510570,17 +378330,12 @@ }, { "id": 26448, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -510589,17 +378344,12 @@ }, { "id": 26449, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -510607,17 +378357,12 @@ }, { "id": 26450, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -510625,17 +378370,12 @@ }, { "id": 26451, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -510644,17 +378384,12 @@ }, { "id": 26452, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -510663,17 +378398,12 @@ }, { "id": 26453, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -510682,17 +378412,12 @@ }, { "id": 26454, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -510701,17 +378426,12 @@ }, { "id": 26455, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -510719,17 +378439,12 @@ }, { "id": 26456, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -510737,17 +378452,12 @@ }, { "id": 26457, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -510755,17 +378465,12 @@ }, { "id": 26458, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -510819,109 +378524,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 26462, "states": [ { "id": 26459, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 26460, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 26461, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 26462, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 26463, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 26464, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -510960,45 +378635,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 26468, "states": [ { "id": 26465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 26466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511007,17 +378672,12 @@ }, { "id": 26467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511026,34 +378686,24 @@ }, { "id": 26468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 26469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511062,17 +378712,12 @@ }, { "id": 26470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511081,115 +378726,80 @@ }, { "id": 26471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 26472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 26475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -511197,17 +378807,12 @@ }, { "id": 26478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511217,17 +378822,12 @@ }, { "id": 26479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511237,17 +378837,12 @@ }, { "id": 26480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -511255,17 +378850,12 @@ }, { "id": 26481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511275,17 +378865,12 @@ }, { "id": 26482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511295,34 +378880,24 @@ }, { "id": 26483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511330,17 +378905,12 @@ }, { "id": 26485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511348,34 +378918,24 @@ }, { "id": 26486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511383,17 +378943,12 @@ }, { "id": 26488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511401,17 +378956,12 @@ }, { "id": 26489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -511419,17 +378969,12 @@ }, { "id": 26490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511439,17 +378984,12 @@ }, { "id": 26491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511459,17 +378999,12 @@ }, { "id": 26492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -511477,17 +379012,12 @@ }, { "id": 26493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511497,17 +379027,12 @@ }, { "id": 26494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511517,34 +379042,24 @@ }, { "id": 26495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511552,17 +379067,12 @@ }, { "id": 26497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511570,34 +379080,24 @@ }, { "id": 26498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511605,17 +379105,12 @@ }, { "id": 26500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -511623,17 +379118,12 @@ }, { "id": 26501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -511641,17 +379131,12 @@ }, { "id": 26502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511661,17 +379146,12 @@ }, { "id": 26503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511681,17 +379161,12 @@ }, { "id": 26504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -511699,17 +379174,12 @@ }, { "id": 26505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511719,17 +379189,12 @@ }, { "id": 26506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511739,34 +379204,24 @@ }, { "id": 26507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -511774,17 +379229,12 @@ }, { "id": 26509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -511792,34 +379242,24 @@ }, { "id": 26510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -511827,17 +379267,12 @@ }, { "id": 26512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -511845,17 +379280,12 @@ }, { "id": 26513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -511864,17 +379294,12 @@ }, { "id": 26514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511885,17 +379310,12 @@ }, { "id": 26515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511906,17 +379326,12 @@ }, { "id": 26516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -511925,17 +379340,12 @@ }, { "id": 26517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511946,17 +379356,12 @@ }, { "id": 26518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -511967,34 +379372,24 @@ }, { "id": 26519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512003,17 +379398,12 @@ }, { "id": 26521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512022,34 +379412,24 @@ }, { "id": 26522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512058,17 +379438,12 @@ }, { "id": 26524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512077,17 +379452,12 @@ }, { "id": 26525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -512096,17 +379466,12 @@ }, { "id": 26526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512117,17 +379482,12 @@ }, { "id": 26527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512138,17 +379498,12 @@ }, { "id": 26528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -512157,17 +379512,12 @@ }, { "id": 26529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512178,17 +379528,12 @@ }, { "id": 26530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512199,34 +379544,24 @@ }, { "id": 26531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512235,17 +379570,12 @@ }, { "id": 26533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512254,34 +379584,24 @@ }, { "id": 26534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512290,17 +379610,12 @@ }, { "id": 26536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512309,17 +379624,12 @@ }, { "id": 26537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -512327,17 +379637,12 @@ }, { "id": 26538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512347,17 +379652,12 @@ }, { "id": 26539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512367,17 +379667,12 @@ }, { "id": 26540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -512385,17 +379680,12 @@ }, { "id": 26541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512405,17 +379695,12 @@ }, { "id": 26542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512425,34 +379710,24 @@ }, { "id": 26543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -512460,17 +379735,12 @@ }, { "id": 26545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -512478,34 +379748,24 @@ }, { "id": 26546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -512513,17 +379773,12 @@ }, { "id": 26548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -512531,17 +379786,12 @@ }, { "id": 26549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -512550,17 +379800,12 @@ }, { "id": 26550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512571,17 +379816,12 @@ }, { "id": 26551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512592,17 +379832,12 @@ }, { "id": 26552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -512611,17 +379846,12 @@ }, { "id": 26553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512632,17 +379862,12 @@ }, { "id": 26554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512653,34 +379878,24 @@ }, { "id": 26555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512689,17 +379904,12 @@ }, { "id": 26557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512708,34 +379918,24 @@ }, { "id": 26558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512744,17 +379944,12 @@ }, { "id": 26560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512763,17 +379958,12 @@ }, { "id": 26561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -512782,17 +379972,12 @@ }, { "id": 26562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512803,17 +379988,12 @@ }, { "id": 26563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512824,17 +380004,12 @@ }, { "id": 26564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -512843,17 +380018,12 @@ }, { "id": 26565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512864,17 +380034,12 @@ }, { "id": 26566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -512885,34 +380050,24 @@ }, { "id": 26567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512921,17 +380076,12 @@ }, { "id": 26569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512940,34 +380090,24 @@ }, { "id": 26570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512976,17 +380116,12 @@ }, { "id": 26572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -512995,17 +380130,12 @@ }, { "id": 26573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -513013,17 +380143,12 @@ }, { "id": 26574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513032,17 +380157,12 @@ }, { "id": 26575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513051,17 +380171,12 @@ }, { "id": 26576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -513069,17 +380184,12 @@ }, { "id": 26577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513088,17 +380198,12 @@ }, { "id": 26578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513107,119 +380212,84 @@ }, { "id": 26579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -513228,17 +380298,12 @@ }, { "id": 26586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513248,17 +380313,12 @@ }, { "id": 26587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513268,17 +380328,12 @@ }, { "id": 26588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -513287,17 +380342,12 @@ }, { "id": 26589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513307,17 +380357,12 @@ }, { "id": 26590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513327,17 +380372,12 @@ }, { "id": 26591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -513345,17 +380385,12 @@ }, { "id": 26592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513363,17 +380398,12 @@ }, { "id": 26593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513381,17 +380411,12 @@ }, { "id": 26594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -513399,17 +380424,12 @@ }, { "id": 26595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513417,17 +380437,12 @@ }, { "id": 26596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513435,17 +380450,12 @@ }, { "id": 26597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -513454,17 +380464,12 @@ }, { "id": 26598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513474,17 +380479,12 @@ }, { "id": 26599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513494,17 +380494,12 @@ }, { "id": 26600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -513513,17 +380508,12 @@ }, { "id": 26601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513533,17 +380523,12 @@ }, { "id": 26602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513553,17 +380538,12 @@ }, { "id": 26603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -513571,17 +380551,12 @@ }, { "id": 26604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513589,17 +380564,12 @@ }, { "id": 26605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513607,17 +380577,12 @@ }, { "id": 26606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -513625,17 +380590,12 @@ }, { "id": 26607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513643,17 +380603,12 @@ }, { "id": 26608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -513661,17 +380616,12 @@ }, { "id": 26609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -513680,17 +380630,12 @@ }, { "id": 26610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513700,17 +380645,12 @@ }, { "id": 26611, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513720,17 +380660,12 @@ }, { "id": 26612, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -513739,17 +380674,12 @@ }, { "id": 26613, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513759,17 +380689,12 @@ }, { "id": 26614, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513779,17 +380704,12 @@ }, { "id": 26615, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -513797,17 +380717,12 @@ }, { "id": 26616, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -513815,17 +380730,12 @@ }, { "id": 26617, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -513833,17 +380743,12 @@ }, { "id": 26618, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -513851,17 +380756,12 @@ }, { "id": 26619, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -513869,17 +380769,12 @@ }, { "id": 26620, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -513887,17 +380782,12 @@ }, { "id": 26621, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -513907,17 +380797,12 @@ }, { "id": 26622, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513928,17 +380813,12 @@ }, { "id": 26623, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513949,17 +380829,12 @@ }, { "id": 26624, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -513969,17 +380844,12 @@ }, { "id": 26625, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -513990,17 +380860,12 @@ }, { "id": 26626, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514011,17 +380876,12 @@ }, { "id": 26627, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514029,17 +380889,12 @@ }, { "id": 26628, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514048,17 +380903,12 @@ }, { "id": 26629, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514067,17 +380917,12 @@ }, { "id": 26630, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514085,17 +380930,12 @@ }, { "id": 26631, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514104,17 +380944,12 @@ }, { "id": 26632, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514123,17 +380958,12 @@ }, { "id": 26633, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514143,17 +380973,12 @@ }, { "id": 26634, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514164,17 +380989,12 @@ }, { "id": 26635, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514185,17 +381005,12 @@ }, { "id": 26636, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514205,17 +381020,12 @@ }, { "id": 26637, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514226,17 +381036,12 @@ }, { "id": 26638, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514247,17 +381052,12 @@ }, { "id": 26639, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514265,17 +381065,12 @@ }, { "id": 26640, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514284,17 +381079,12 @@ }, { "id": 26641, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514303,17 +381093,12 @@ }, { "id": 26642, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514321,17 +381106,12 @@ }, { "id": 26643, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514340,17 +381120,12 @@ }, { "id": 26644, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514359,17 +381134,12 @@ }, { "id": 26645, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514378,17 +381148,12 @@ }, { "id": 26646, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514398,17 +381163,12 @@ }, { "id": 26647, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514418,17 +381178,12 @@ }, { "id": 26648, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514437,17 +381192,12 @@ }, { "id": 26649, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514457,17 +381207,12 @@ }, { "id": 26650, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514477,17 +381222,12 @@ }, { "id": 26651, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -514495,17 +381235,12 @@ }, { "id": 26652, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -514513,17 +381248,12 @@ }, { "id": 26653, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -514531,17 +381261,12 @@ }, { "id": 26654, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -514549,17 +381274,12 @@ }, { "id": 26655, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -514567,17 +381287,12 @@ }, { "id": 26656, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -514585,17 +381300,12 @@ }, { "id": 26657, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514605,17 +381315,12 @@ }, { "id": 26658, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514626,17 +381331,12 @@ }, { "id": 26659, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514647,17 +381347,12 @@ }, { "id": 26660, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514667,17 +381362,12 @@ }, { "id": 26661, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514688,17 +381378,12 @@ }, { "id": 26662, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514709,17 +381394,12 @@ }, { "id": 26663, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514727,17 +381407,12 @@ }, { "id": 26664, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514746,17 +381421,12 @@ }, { "id": 26665, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514765,17 +381435,12 @@ }, { "id": 26666, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514783,17 +381448,12 @@ }, { "id": 26667, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514802,17 +381462,12 @@ }, { "id": 26668, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514821,17 +381476,12 @@ }, { "id": 26669, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514841,17 +381491,12 @@ }, { "id": 26670, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514862,17 +381507,12 @@ }, { "id": 26671, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514883,17 +381523,12 @@ }, { "id": 26672, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -514903,17 +381538,12 @@ }, { "id": 26673, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514924,17 +381554,12 @@ }, { "id": 26674, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -514945,17 +381570,12 @@ }, { "id": 26675, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -514963,17 +381583,12 @@ }, { "id": 26676, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -514982,17 +381597,12 @@ }, { "id": 26677, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -515001,17 +381611,12 @@ }, { "id": 26678, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -515019,17 +381624,12 @@ }, { "id": 26679, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -515038,17 +381638,12 @@ }, { "id": 26680, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -515057,17 +381652,12 @@ }, { "id": 26681, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -515075,17 +381665,12 @@ }, { "id": 26682, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515094,17 +381679,12 @@ }, { "id": 26683, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515113,17 +381693,12 @@ }, { "id": 26684, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -515131,17 +381706,12 @@ }, { "id": 26685, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515150,17 +381720,12 @@ }, { "id": 26686, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515169,119 +381734,84 @@ }, { "id": 26687, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26688, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26689, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26690, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26691, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26692, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26693, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -515290,17 +381820,12 @@ }, { "id": 26694, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515310,17 +381835,12 @@ }, { "id": 26695, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515330,17 +381850,12 @@ }, { "id": 26696, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -515349,17 +381864,12 @@ }, { "id": 26697, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515369,17 +381879,12 @@ }, { "id": 26698, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515389,17 +381894,12 @@ }, { "id": 26699, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -515407,17 +381907,12 @@ }, { "id": 26700, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515425,17 +381920,12 @@ }, { "id": 26701, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515443,17 +381933,12 @@ }, { "id": 26702, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -515461,17 +381946,12 @@ }, { "id": 26703, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515479,17 +381959,12 @@ }, { "id": 26704, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515497,17 +381972,12 @@ }, { "id": 26705, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -515516,17 +381986,12 @@ }, { "id": 26706, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515536,17 +382001,12 @@ }, { "id": 26707, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515556,17 +382016,12 @@ }, { "id": 26708, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -515575,17 +382030,12 @@ }, { "id": 26709, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515595,17 +382045,12 @@ }, { "id": 26710, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515615,17 +382060,12 @@ }, { "id": 26711, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -515633,17 +382073,12 @@ }, { "id": 26712, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515651,17 +382086,12 @@ }, { "id": 26713, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515669,17 +382099,12 @@ }, { "id": 26714, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -515687,17 +382112,12 @@ }, { "id": 26715, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515705,17 +382125,12 @@ }, { "id": 26716, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -515723,17 +382138,12 @@ }, { "id": 26717, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -515742,17 +382152,12 @@ }, { "id": 26718, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515762,17 +382167,12 @@ }, { "id": 26719, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515782,17 +382182,12 @@ }, { "id": 26720, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -515801,17 +382196,12 @@ }, { "id": 26721, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515821,17 +382211,12 @@ }, { "id": 26722, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515841,17 +382226,12 @@ }, { "id": 26723, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -515859,17 +382239,12 @@ }, { "id": 26724, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -515877,17 +382252,12 @@ }, { "id": 26725, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -515895,17 +382265,12 @@ }, { "id": 26726, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -515913,17 +382278,12 @@ }, { "id": 26727, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -515931,17 +382291,12 @@ }, { "id": 26728, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -515949,17 +382304,12 @@ }, { "id": 26729, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -515969,17 +382319,12 @@ }, { "id": 26730, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -515990,17 +382335,12 @@ }, { "id": 26731, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516011,17 +382351,12 @@ }, { "id": 26732, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516031,17 +382366,12 @@ }, { "id": 26733, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516052,17 +382382,12 @@ }, { "id": 26734, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516073,17 +382398,12 @@ }, { "id": 26735, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -516091,17 +382411,12 @@ }, { "id": 26736, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516110,17 +382425,12 @@ }, { "id": 26737, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516129,17 +382439,12 @@ }, { "id": 26738, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -516147,17 +382452,12 @@ }, { "id": 26739, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516166,17 +382466,12 @@ }, { "id": 26740, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516185,17 +382480,12 @@ }, { "id": 26741, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516205,17 +382495,12 @@ }, { "id": 26742, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516226,17 +382511,12 @@ }, { "id": 26743, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516247,17 +382527,12 @@ }, { "id": 26744, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516267,17 +382542,12 @@ }, { "id": 26745, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516288,17 +382558,12 @@ }, { "id": 26746, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516309,17 +382574,12 @@ }, { "id": 26747, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -516327,17 +382587,12 @@ }, { "id": 26748, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516346,17 +382601,12 @@ }, { "id": 26749, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516365,17 +382615,12 @@ }, { "id": 26750, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -516383,17 +382628,12 @@ }, { "id": 26751, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516402,17 +382642,12 @@ }, { "id": 26752, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516421,17 +382656,12 @@ }, { "id": 26753, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516440,17 +382670,12 @@ }, { "id": 26754, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516460,17 +382685,12 @@ }, { "id": 26755, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516480,17 +382700,12 @@ }, { "id": 26756, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516499,17 +382714,12 @@ }, { "id": 26757, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516519,17 +382729,12 @@ }, { "id": 26758, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516539,17 +382744,12 @@ }, { "id": 26759, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -516557,17 +382757,12 @@ }, { "id": 26760, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -516575,17 +382770,12 @@ }, { "id": 26761, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -516593,17 +382783,12 @@ }, { "id": 26762, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -516611,17 +382796,12 @@ }, { "id": 26763, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -516629,17 +382809,12 @@ }, { "id": 26764, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -516647,17 +382822,12 @@ }, { "id": 26765, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516667,17 +382837,12 @@ }, { "id": 26766, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516688,17 +382853,12 @@ }, { "id": 26767, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516709,17 +382869,12 @@ }, { "id": 26768, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516729,17 +382884,12 @@ }, { "id": 26769, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516750,17 +382900,12 @@ }, { "id": 26770, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516771,17 +382916,12 @@ }, { "id": 26771, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -516789,17 +382929,12 @@ }, { "id": 26772, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516808,17 +382943,12 @@ }, { "id": 26773, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516827,17 +382957,12 @@ }, { "id": 26774, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -516845,17 +382970,12 @@ }, { "id": 26775, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516864,17 +382984,12 @@ }, { "id": 26776, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -516883,17 +382998,12 @@ }, { "id": 26777, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516903,17 +383013,12 @@ }, { "id": 26778, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516924,17 +383029,12 @@ }, { "id": 26779, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516945,17 +383045,12 @@ }, { "id": 26780, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -516965,17 +383060,12 @@ }, { "id": 26781, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -516986,17 +383076,12 @@ }, { "id": 26782, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -517007,17 +383092,12 @@ }, { "id": 26783, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -517025,17 +383105,12 @@ }, { "id": 26784, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -517044,17 +383119,12 @@ }, { "id": 26785, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -517063,17 +383133,12 @@ }, { "id": 26786, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -517081,17 +383146,12 @@ }, { "id": 26787, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -517100,17 +383160,12 @@ }, { "id": 26788, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -517155,17 +383210,12 @@ "states": [ { "id": 26789, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -517204,26 +383254,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 26801, "states": [ { "id": 26790, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -517231,17 +383276,12 @@ }, { "id": 26791, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -517249,17 +383289,12 @@ }, { "id": 26792, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -517268,17 +383303,12 @@ }, { "id": 26793, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -517287,17 +383317,12 @@ }, { "id": 26794, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -517306,17 +383331,12 @@ }, { "id": 26795, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -517325,17 +383345,12 @@ }, { "id": 26796, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -517344,17 +383359,12 @@ }, { "id": 26797, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -517363,17 +383373,12 @@ }, { "id": 26798, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -517382,17 +383387,12 @@ }, { "id": 26799, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -517401,17 +383401,12 @@ }, { "id": 26800, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -517419,17 +383414,12 @@ }, { "id": 26801, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -517437,17 +383427,12 @@ }, { "id": 26802, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -517456,17 +383441,12 @@ }, { "id": 26803, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -517475,17 +383455,12 @@ }, { "id": 26804, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -517494,17 +383469,12 @@ }, { "id": 26805, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -517513,17 +383483,12 @@ }, { "id": 26806, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -517531,17 +383496,12 @@ }, { "id": 26807, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -517549,17 +383509,12 @@ }, { "id": 26808, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -517567,17 +383522,12 @@ }, { "id": 26809, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -517585,17 +383535,12 @@ }, { "id": 26810, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -517603,17 +383548,12 @@ }, { "id": 26811, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -517621,17 +383561,12 @@ }, { "id": 26812, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -517640,17 +383575,12 @@ }, { "id": 26813, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -517659,17 +383589,12 @@ }, { "id": 26814, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -517678,17 +383603,12 @@ }, { "id": 26815, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -517697,17 +383617,12 @@ }, { "id": 26816, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -517716,17 +383631,12 @@ }, { "id": 26817, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -517735,17 +383645,12 @@ }, { "id": 26818, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -517754,17 +383659,12 @@ }, { "id": 26819, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -517773,17 +383673,12 @@ }, { "id": 26820, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -517791,17 +383686,12 @@ }, { "id": 26821, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -517809,17 +383699,12 @@ }, { "id": 26822, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -517828,17 +383713,12 @@ }, { "id": 26823, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -517847,17 +383727,12 @@ }, { "id": 26824, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -517866,17 +383741,12 @@ }, { "id": 26825, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -517885,17 +383755,12 @@ }, { "id": 26826, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -517903,17 +383768,12 @@ }, { "id": 26827, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -517921,17 +383781,12 @@ }, { "id": 26828, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -517939,17 +383794,12 @@ }, { "id": 26829, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -517957,17 +383807,12 @@ }, { "id": 26830, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -517975,17 +383820,12 @@ }, { "id": 26831, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -517993,17 +383833,12 @@ }, { "id": 26832, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -518012,17 +383847,12 @@ }, { "id": 26833, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -518031,17 +383861,12 @@ }, { "id": 26834, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -518050,17 +383875,12 @@ }, { "id": 26835, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -518069,17 +383889,12 @@ }, { "id": 26836, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -518088,17 +383903,12 @@ }, { "id": 26837, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -518107,17 +383917,12 @@ }, { "id": 26838, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -518126,17 +383931,12 @@ }, { "id": 26839, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -518145,17 +383945,12 @@ }, { "id": 26840, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -518163,17 +383958,12 @@ }, { "id": 26841, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -518181,17 +383971,12 @@ }, { "id": 26842, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -518200,17 +383985,12 @@ }, { "id": 26843, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -518219,17 +383999,12 @@ }, { "id": 26844, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -518238,17 +384013,12 @@ }, { "id": 26845, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -518257,17 +384027,12 @@ }, { "id": 26846, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -518275,17 +384040,12 @@ }, { "id": 26847, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -518293,17 +384053,12 @@ }, { "id": 26848, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -518311,17 +384066,12 @@ }, { "id": 26849, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -518329,17 +384079,12 @@ }, { "id": 26850, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -518347,17 +384092,12 @@ }, { "id": 26851, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -518365,17 +384105,12 @@ }, { "id": 26852, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -518384,17 +384119,12 @@ }, { "id": 26853, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -518403,17 +384133,12 @@ }, { "id": 26854, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -518422,17 +384147,12 @@ }, { "id": 26855, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -518441,17 +384161,12 @@ }, { "id": 26856, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -518460,17 +384175,12 @@ }, { "id": 26857, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -518479,17 +384189,12 @@ }, { "id": 26858, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -518498,17 +384203,12 @@ }, { "id": 26859, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -518517,17 +384217,12 @@ }, { "id": 26860, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -518535,17 +384230,12 @@ }, { "id": 26861, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -518553,17 +384243,12 @@ }, { "id": 26862, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -518572,17 +384257,12 @@ }, { "id": 26863, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -518591,17 +384271,12 @@ }, { "id": 26864, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -518610,17 +384285,12 @@ }, { "id": 26865, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -518629,17 +384299,12 @@ }, { "id": 26866, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -518647,17 +384312,12 @@ }, { "id": 26867, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -518665,17 +384325,12 @@ }, { "id": 26868, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -518683,17 +384338,12 @@ }, { "id": 26869, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -518747,109 +384397,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 26873, "states": [ { "id": 26870, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 26871, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 26872, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 26873, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 26874, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 26875, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -518888,45 +384508,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 26879, "states": [ { "id": 26876, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 26877, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -518935,17 +384545,12 @@ }, { "id": 26878, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -518954,34 +384559,24 @@ }, { "id": 26879, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 26880, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -518990,17 +384585,12 @@ }, { "id": 26881, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519009,115 +384599,80 @@ }, { "id": 26882, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 26883, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26884, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26885, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 26886, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26887, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 26888, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -519125,17 +384680,12 @@ }, { "id": 26889, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519145,17 +384695,12 @@ }, { "id": 26890, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519165,17 +384710,12 @@ }, { "id": 26891, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -519183,17 +384723,12 @@ }, { "id": 26892, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519203,17 +384738,12 @@ }, { "id": 26893, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519223,34 +384753,24 @@ }, { "id": 26894, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26895, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519258,17 +384778,12 @@ }, { "id": 26896, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519276,34 +384791,24 @@ }, { "id": 26897, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26898, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519311,17 +384816,12 @@ }, { "id": 26899, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519329,17 +384829,12 @@ }, { "id": 26900, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -519347,17 +384842,12 @@ }, { "id": 26901, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519367,17 +384857,12 @@ }, { "id": 26902, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519387,17 +384872,12 @@ }, { "id": 26903, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -519405,17 +384885,12 @@ }, { "id": 26904, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519425,17 +384900,12 @@ }, { "id": 26905, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519445,34 +384915,24 @@ }, { "id": 26906, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26907, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519480,17 +384940,12 @@ }, { "id": 26908, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519498,34 +384953,24 @@ }, { "id": 26909, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 26910, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519533,17 +384978,12 @@ }, { "id": 26911, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -519551,17 +384991,12 @@ }, { "id": 26912, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -519569,17 +385004,12 @@ }, { "id": 26913, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519589,17 +385019,12 @@ }, { "id": 26914, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519609,17 +385034,12 @@ }, { "id": 26915, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -519627,17 +385047,12 @@ }, { "id": 26916, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519647,17 +385062,12 @@ }, { "id": 26917, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519667,34 +385077,24 @@ }, { "id": 26918, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26919, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -519702,17 +385102,12 @@ }, { "id": 26920, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -519720,34 +385115,24 @@ }, { "id": 26921, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26922, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -519755,17 +385140,12 @@ }, { "id": 26923, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -519773,17 +385153,12 @@ }, { "id": 26924, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -519792,17 +385167,12 @@ }, { "id": 26925, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519813,17 +385183,12 @@ }, { "id": 26926, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519834,17 +385199,12 @@ }, { "id": 26927, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -519853,17 +385213,12 @@ }, { "id": 26928, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519874,17 +385229,12 @@ }, { "id": 26929, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -519895,34 +385245,24 @@ }, { "id": 26930, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26931, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -519931,17 +385271,12 @@ }, { "id": 26932, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -519950,34 +385285,24 @@ }, { "id": 26933, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26934, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -519986,17 +385311,12 @@ }, { "id": 26935, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520005,17 +385325,12 @@ }, { "id": 26936, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -520024,17 +385339,12 @@ }, { "id": 26937, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520045,17 +385355,12 @@ }, { "id": 26938, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520066,17 +385371,12 @@ }, { "id": 26939, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -520085,17 +385385,12 @@ }, { "id": 26940, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520106,17 +385401,12 @@ }, { "id": 26941, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520127,34 +385417,24 @@ }, { "id": 26942, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26943, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520163,17 +385443,12 @@ }, { "id": 26944, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520182,34 +385457,24 @@ }, { "id": 26945, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26946, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520218,17 +385483,12 @@ }, { "id": 26947, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520237,17 +385497,12 @@ }, { "id": 26948, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -520255,17 +385510,12 @@ }, { "id": 26949, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520275,17 +385525,12 @@ }, { "id": 26950, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520295,17 +385540,12 @@ }, { "id": 26951, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -520313,17 +385553,12 @@ }, { "id": 26952, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520333,17 +385568,12 @@ }, { "id": 26953, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520353,34 +385583,24 @@ }, { "id": 26954, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26955, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -520388,17 +385608,12 @@ }, { "id": 26956, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -520406,34 +385621,24 @@ }, { "id": 26957, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 26958, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -520441,17 +385646,12 @@ }, { "id": 26959, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -520459,17 +385659,12 @@ }, { "id": 26960, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -520478,17 +385673,12 @@ }, { "id": 26961, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520499,17 +385689,12 @@ }, { "id": 26962, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520520,17 +385705,12 @@ }, { "id": 26963, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -520539,17 +385719,12 @@ }, { "id": 26964, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520560,17 +385735,12 @@ }, { "id": 26965, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520581,34 +385751,24 @@ }, { "id": 26966, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26967, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520617,17 +385777,12 @@ }, { "id": 26968, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520636,34 +385791,24 @@ }, { "id": 26969, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26970, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520672,17 +385817,12 @@ }, { "id": 26971, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520691,17 +385831,12 @@ }, { "id": 26972, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -520710,17 +385845,12 @@ }, { "id": 26973, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520731,17 +385861,12 @@ }, { "id": 26974, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520752,17 +385877,12 @@ }, { "id": 26975, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -520771,17 +385891,12 @@ }, { "id": 26976, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520792,17 +385907,12 @@ }, { "id": 26977, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -520813,34 +385923,24 @@ }, { "id": 26978, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26979, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520849,17 +385949,12 @@ }, { "id": 26980, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520868,34 +385963,24 @@ }, { "id": 26981, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 26982, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520904,17 +385989,12 @@ }, { "id": 26983, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -520923,17 +386003,12 @@ }, { "id": 26984, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -520941,17 +386016,12 @@ }, { "id": 26985, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -520960,17 +386030,12 @@ }, { "id": 26986, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -520979,17 +386044,12 @@ }, { "id": 26987, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -520997,17 +386057,12 @@ }, { "id": 26988, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521016,17 +386071,12 @@ }, { "id": 26989, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521035,119 +386085,84 @@ }, { "id": 26990, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26991, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26992, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26993, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 26994, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26995, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 26996, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -521156,17 +386171,12 @@ }, { "id": 26997, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521176,17 +386186,12 @@ }, { "id": 26998, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521196,17 +386201,12 @@ }, { "id": 26999, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -521215,17 +386215,12 @@ }, { "id": 27000, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521235,17 +386230,12 @@ }, { "id": 27001, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521255,17 +386245,12 @@ }, { "id": 27002, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -521273,17 +386258,12 @@ }, { "id": 27003, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521291,17 +386271,12 @@ }, { "id": 27004, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521309,17 +386284,12 @@ }, { "id": 27005, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -521327,17 +386297,12 @@ }, { "id": 27006, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521345,17 +386310,12 @@ }, { "id": 27007, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521363,17 +386323,12 @@ }, { "id": 27008, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -521382,17 +386337,12 @@ }, { "id": 27009, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521402,17 +386352,12 @@ }, { "id": 27010, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521422,17 +386367,12 @@ }, { "id": 27011, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -521441,17 +386381,12 @@ }, { "id": 27012, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521461,17 +386396,12 @@ }, { "id": 27013, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521481,17 +386411,12 @@ }, { "id": 27014, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -521499,17 +386424,12 @@ }, { "id": 27015, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521517,17 +386437,12 @@ }, { "id": 27016, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521535,17 +386450,12 @@ }, { "id": 27017, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -521553,17 +386463,12 @@ }, { "id": 27018, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521571,17 +386476,12 @@ }, { "id": 27019, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -521589,17 +386489,12 @@ }, { "id": 27020, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -521608,17 +386503,12 @@ }, { "id": 27021, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521628,17 +386518,12 @@ }, { "id": 27022, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521648,17 +386533,12 @@ }, { "id": 27023, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -521667,17 +386547,12 @@ }, { "id": 27024, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521687,17 +386562,12 @@ }, { "id": 27025, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521707,17 +386577,12 @@ }, { "id": 27026, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -521725,17 +386590,12 @@ }, { "id": 27027, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -521743,17 +386603,12 @@ }, { "id": 27028, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -521761,17 +386616,12 @@ }, { "id": 27029, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -521779,17 +386629,12 @@ }, { "id": 27030, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -521797,17 +386642,12 @@ }, { "id": 27031, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -521815,17 +386655,12 @@ }, { "id": 27032, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -521835,17 +386670,12 @@ }, { "id": 27033, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521856,17 +386686,12 @@ }, { "id": 27034, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521877,17 +386702,12 @@ }, { "id": 27035, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -521897,17 +386717,12 @@ }, { "id": 27036, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521918,17 +386733,12 @@ }, { "id": 27037, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -521939,17 +386749,12 @@ }, { "id": 27038, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -521957,17 +386762,12 @@ }, { "id": 27039, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -521976,17 +386776,12 @@ }, { "id": 27040, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -521995,17 +386790,12 @@ }, { "id": 27041, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522013,17 +386803,12 @@ }, { "id": 27042, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522032,17 +386817,12 @@ }, { "id": 27043, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522051,17 +386831,12 @@ }, { "id": 27044, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522071,17 +386846,12 @@ }, { "id": 27045, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522092,17 +386862,12 @@ }, { "id": 27046, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522113,17 +386878,12 @@ }, { "id": 27047, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522133,17 +386893,12 @@ }, { "id": 27048, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522154,17 +386909,12 @@ }, { "id": 27049, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522175,17 +386925,12 @@ }, { "id": 27050, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522193,17 +386938,12 @@ }, { "id": 27051, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522212,17 +386952,12 @@ }, { "id": 27052, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522231,17 +386966,12 @@ }, { "id": 27053, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522249,17 +386979,12 @@ }, { "id": 27054, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522268,17 +386993,12 @@ }, { "id": 27055, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522287,17 +387007,12 @@ }, { "id": 27056, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522306,17 +387021,12 @@ }, { "id": 27057, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522326,17 +387036,12 @@ }, { "id": 27058, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522346,17 +387051,12 @@ }, { "id": 27059, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522365,17 +387065,12 @@ }, { "id": 27060, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522385,17 +387080,12 @@ }, { "id": 27061, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522405,17 +387095,12 @@ }, { "id": 27062, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -522423,17 +387108,12 @@ }, { "id": 27063, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -522441,17 +387121,12 @@ }, { "id": 27064, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -522459,17 +387134,12 @@ }, { "id": 27065, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -522477,17 +387147,12 @@ }, { "id": 27066, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -522495,17 +387160,12 @@ }, { "id": 27067, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -522513,17 +387173,12 @@ }, { "id": 27068, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522533,17 +387188,12 @@ }, { "id": 27069, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522554,17 +387204,12 @@ }, { "id": 27070, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522575,17 +387220,12 @@ }, { "id": 27071, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522595,17 +387235,12 @@ }, { "id": 27072, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522616,17 +387251,12 @@ }, { "id": 27073, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522637,17 +387267,12 @@ }, { "id": 27074, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522655,17 +387280,12 @@ }, { "id": 27075, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522674,17 +387294,12 @@ }, { "id": 27076, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522693,17 +387308,12 @@ }, { "id": 27077, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522711,17 +387321,12 @@ }, { "id": 27078, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522730,17 +387335,12 @@ }, { "id": 27079, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522749,17 +387349,12 @@ }, { "id": 27080, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522769,17 +387364,12 @@ }, { "id": 27081, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522790,17 +387380,12 @@ }, { "id": 27082, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522811,17 +387396,12 @@ }, { "id": 27083, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -522831,17 +387411,12 @@ }, { "id": 27084, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522852,17 +387427,12 @@ }, { "id": 27085, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -522873,17 +387443,12 @@ }, { "id": 27086, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522891,17 +387456,12 @@ }, { "id": 27087, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522910,17 +387470,12 @@ }, { "id": 27088, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522929,17 +387484,12 @@ }, { "id": 27089, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -522947,17 +387497,12 @@ }, { "id": 27090, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522966,17 +387511,12 @@ }, { "id": 27091, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -522985,17 +387525,12 @@ }, { "id": 27092, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -523003,17 +387538,12 @@ }, { "id": 27093, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523022,17 +387552,12 @@ }, { "id": 27094, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523041,17 +387566,12 @@ }, { "id": 27095, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -523059,17 +387579,12 @@ }, { "id": 27096, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523078,17 +387593,12 @@ }, { "id": 27097, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523097,119 +387607,84 @@ }, { "id": 27098, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 27099, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27100, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27101, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 27102, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27103, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27104, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -523218,17 +387693,12 @@ }, { "id": 27105, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523238,17 +387708,12 @@ }, { "id": 27106, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523258,17 +387723,12 @@ }, { "id": 27107, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -523277,17 +387737,12 @@ }, { "id": 27108, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523297,17 +387752,12 @@ }, { "id": 27109, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523317,17 +387767,12 @@ }, { "id": 27110, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -523335,17 +387780,12 @@ }, { "id": 27111, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523353,17 +387793,12 @@ }, { "id": 27112, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523371,17 +387806,12 @@ }, { "id": 27113, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -523389,17 +387819,12 @@ }, { "id": 27114, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523407,17 +387832,12 @@ }, { "id": 27115, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523425,17 +387845,12 @@ }, { "id": 27116, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -523444,17 +387859,12 @@ }, { "id": 27117, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523464,17 +387874,12 @@ }, { "id": 27118, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523484,17 +387889,12 @@ }, { "id": 27119, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -523503,17 +387903,12 @@ }, { "id": 27120, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523523,17 +387918,12 @@ }, { "id": 27121, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523543,17 +387933,12 @@ }, { "id": 27122, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -523561,17 +387946,12 @@ }, { "id": 27123, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523579,17 +387959,12 @@ }, { "id": 27124, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523597,17 +387972,12 @@ }, { "id": 27125, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -523615,17 +387985,12 @@ }, { "id": 27126, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523633,17 +387998,12 @@ }, { "id": 27127, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -523651,17 +388011,12 @@ }, { "id": 27128, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -523670,17 +388025,12 @@ }, { "id": 27129, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523690,17 +388040,12 @@ }, { "id": 27130, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523710,17 +388055,12 @@ }, { "id": 27131, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -523729,17 +388069,12 @@ }, { "id": 27132, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523749,17 +388084,12 @@ }, { "id": 27133, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523769,17 +388099,12 @@ }, { "id": 27134, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -523787,17 +388112,12 @@ }, { "id": 27135, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -523805,17 +388125,12 @@ }, { "id": 27136, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -523823,17 +388138,12 @@ }, { "id": 27137, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -523841,17 +388151,12 @@ }, { "id": 27138, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -523859,17 +388164,12 @@ }, { "id": 27139, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -523877,17 +388177,12 @@ }, { "id": 27140, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -523897,17 +388192,12 @@ }, { "id": 27141, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523918,17 +388208,12 @@ }, { "id": 27142, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523939,17 +388224,12 @@ }, { "id": 27143, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -523959,17 +388239,12 @@ }, { "id": 27144, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -523980,17 +388255,12 @@ }, { "id": 27145, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524001,17 +388271,12 @@ }, { "id": 27146, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524019,17 +388284,12 @@ }, { "id": 27147, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524038,17 +388298,12 @@ }, { "id": 27148, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524057,17 +388312,12 @@ }, { "id": 27149, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524075,17 +388325,12 @@ }, { "id": 27150, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524094,17 +388339,12 @@ }, { "id": 27151, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524113,17 +388353,12 @@ }, { "id": 27152, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524133,17 +388368,12 @@ }, { "id": 27153, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524154,17 +388384,12 @@ }, { "id": 27154, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524175,17 +388400,12 @@ }, { "id": 27155, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524195,17 +388415,12 @@ }, { "id": 27156, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524216,17 +388431,12 @@ }, { "id": 27157, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524237,17 +388447,12 @@ }, { "id": 27158, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524255,17 +388460,12 @@ }, { "id": 27159, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524274,17 +388474,12 @@ }, { "id": 27160, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524293,17 +388488,12 @@ }, { "id": 27161, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524311,17 +388501,12 @@ }, { "id": 27162, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524330,17 +388515,12 @@ }, { "id": 27163, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524349,17 +388529,12 @@ }, { "id": 27164, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524368,17 +388543,12 @@ }, { "id": 27165, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524388,17 +388558,12 @@ }, { "id": 27166, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524408,17 +388573,12 @@ }, { "id": 27167, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524427,17 +388587,12 @@ }, { "id": 27168, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524447,17 +388602,12 @@ }, { "id": 27169, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524467,17 +388617,12 @@ }, { "id": 27170, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -524485,17 +388630,12 @@ }, { "id": 27171, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -524503,17 +388643,12 @@ }, { "id": 27172, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -524521,17 +388656,12 @@ }, { "id": 27173, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -524539,17 +388669,12 @@ }, { "id": 27174, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -524557,17 +388682,12 @@ }, { "id": 27175, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -524575,17 +388695,12 @@ }, { "id": 27176, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524595,17 +388710,12 @@ }, { "id": 27177, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524616,17 +388726,12 @@ }, { "id": 27178, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524637,17 +388742,12 @@ }, { "id": 27179, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524657,17 +388757,12 @@ }, { "id": 27180, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524678,17 +388773,12 @@ }, { "id": 27181, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524699,17 +388789,12 @@ }, { "id": 27182, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524717,17 +388802,12 @@ }, { "id": 27183, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524736,17 +388816,12 @@ }, { "id": 27184, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524755,17 +388830,12 @@ }, { "id": 27185, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524773,17 +388843,12 @@ }, { "id": 27186, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524792,17 +388857,12 @@ }, { "id": 27187, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524811,17 +388871,12 @@ }, { "id": 27188, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524831,17 +388886,12 @@ }, { "id": 27189, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524852,17 +388902,12 @@ }, { "id": 27190, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524873,17 +388918,12 @@ }, { "id": 27191, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -524893,17 +388933,12 @@ }, { "id": 27192, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524914,17 +388949,12 @@ }, { "id": 27193, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -524935,17 +388965,12 @@ }, { "id": 27194, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -524953,17 +388978,12 @@ }, { "id": 27195, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524972,17 +388992,12 @@ }, { "id": 27196, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -524991,17 +389006,12 @@ }, { "id": 27197, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -525009,17 +389019,12 @@ }, { "id": 27198, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -525028,17 +389033,12 @@ }, { "id": 27199, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -525083,17 +389083,12 @@ "states": [ { "id": 27200, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -525132,26 +389127,21 @@ ] }, "properties": [ - -1870206692, - 1572277146, - 778491774, - 795783032 + 1877134791, + 1520831296, + 147639687, + 989206919 ], "default_state_id": 27212, "states": [ { "id": 27201, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -525159,17 +389149,12 @@ }, { "id": 27202, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 42 @@ -525177,17 +389162,12 @@ }, { "id": 27203, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -525196,17 +389176,12 @@ }, { "id": 27204, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -525215,17 +389190,12 @@ }, { "id": 27205, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -525234,17 +389204,12 @@ }, { "id": 27206, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -525253,17 +389218,12 @@ }, { "id": 27207, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -525272,17 +389232,12 @@ }, { "id": 27208, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -525291,17 +389246,12 @@ }, { "id": 27209, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -525310,17 +389260,12 @@ }, { "id": 27210, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -525329,17 +389274,12 @@ }, { "id": 27211, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -525347,17 +389287,12 @@ }, { "id": 27212, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52 @@ -525365,17 +389300,12 @@ }, { "id": 27213, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -525384,17 +389314,12 @@ }, { "id": 27214, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -525403,17 +389328,12 @@ }, { "id": 27215, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -525422,17 +389342,12 @@ }, { "id": 27216, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -525441,17 +389356,12 @@ }, { "id": 27217, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -525459,17 +389369,12 @@ }, { "id": 27218, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -525477,17 +389382,12 @@ }, { "id": 27219, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -525495,17 +389395,12 @@ }, { "id": 27220, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -525513,17 +389408,12 @@ }, { "id": 27221, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -525531,17 +389421,12 @@ }, { "id": 27222, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 52 @@ -525549,17 +389434,12 @@ }, { "id": 27223, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -525568,17 +389448,12 @@ }, { "id": 27224, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -525587,17 +389462,12 @@ }, { "id": 27225, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -525606,17 +389476,12 @@ }, { "id": 27226, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -525625,17 +389490,12 @@ }, { "id": 27227, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -525644,17 +389504,12 @@ }, { "id": 27228, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -525663,17 +389518,12 @@ }, { "id": 27229, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -525682,17 +389532,12 @@ }, { "id": 27230, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -525701,17 +389546,12 @@ }, { "id": 27231, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -525719,17 +389559,12 @@ }, { "id": 27232, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42 @@ -525737,17 +389572,12 @@ }, { "id": 27233, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -525756,17 +389586,12 @@ }, { "id": 27234, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -525775,17 +389600,12 @@ }, { "id": 27235, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -525794,17 +389614,12 @@ }, { "id": 27236, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -525813,17 +389628,12 @@ }, { "id": 27237, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -525831,17 +389641,12 @@ }, { "id": 27238, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -525849,17 +389654,12 @@ }, { "id": 27239, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -525867,17 +389667,12 @@ }, { "id": 27240, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -525885,17 +389680,12 @@ }, { "id": 27241, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -525903,17 +389693,12 @@ }, { "id": 27242, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 56 @@ -525921,17 +389706,12 @@ }, { "id": 27243, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -525940,17 +389720,12 @@ }, { "id": 27244, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 46, @@ -525959,17 +389734,12 @@ }, { "id": 27245, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -525978,17 +389748,12 @@ }, { "id": 27246, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 43, 44, @@ -525997,17 +389762,12 @@ }, { "id": 27247, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -526016,17 +389776,12 @@ }, { "id": 27248, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 55, 52, @@ -526035,17 +389790,12 @@ }, { "id": 27249, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -526054,17 +389804,12 @@ }, { "id": 27250, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 48, 42, @@ -526073,17 +389818,12 @@ }, { "id": 27251, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -526091,17 +389831,12 @@ }, { "id": 27252, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50 @@ -526109,17 +389844,12 @@ }, { "id": 27253, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -526128,17 +389858,12 @@ }, { "id": 27254, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -526147,17 +389872,12 @@ }, { "id": 27255, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -526166,17 +389886,12 @@ }, { "id": 27256, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 50, @@ -526185,17 +389900,12 @@ }, { "id": 27257, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -526203,17 +389913,12 @@ }, { "id": 27258, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 47 @@ -526221,17 +389926,12 @@ }, { "id": 27259, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -526239,17 +389939,12 @@ }, { "id": 27260, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 53 @@ -526257,17 +389952,12 @@ }, { "id": 27261, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -526275,17 +389965,12 @@ }, { "id": 27262, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 57, 50 @@ -526293,17 +389978,12 @@ }, { "id": 27263, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -526312,17 +389992,12 @@ }, { "id": 27264, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 41, 46, @@ -526331,17 +390006,12 @@ }, { "id": 27265, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -526350,17 +390020,12 @@ }, { "id": 27266, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 54, 44, @@ -526369,17 +390034,12 @@ }, { "id": 27267, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -526388,17 +390048,12 @@ }, { "id": 27268, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 44, 50, @@ -526407,17 +390062,12 @@ }, { "id": 27269, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -526426,17 +390076,12 @@ }, { "id": 27270, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 46, 50, @@ -526445,17 +390090,12 @@ }, { "id": 27271, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -526463,17 +390103,12 @@ }, { "id": 27272, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 56 @@ -526481,17 +390116,12 @@ }, { "id": 27273, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -526500,17 +390130,12 @@ }, { "id": 27274, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 52, @@ -526519,17 +390144,12 @@ }, { "id": 27275, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -526538,17 +390158,12 @@ }, { "id": 27276, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 42, @@ -526557,17 +390172,12 @@ }, { "id": 27277, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -526575,17 +390185,12 @@ }, { "id": 27278, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 49 @@ -526593,17 +390198,12 @@ }, { "id": 27279, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -526611,17 +390211,12 @@ }, { "id": 27280, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -526675,109 +390270,79 @@ ] }, "properties": [ - -36255920, - 795783032 + 501738860, + 989206919 ], "default_state_id": 27284, "states": [ { "id": 27281, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 27282, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 108 ] }, { "id": 27283, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 27284, - "air": false, - "is_solid": true, + "state_flags": 76, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": true, - "replaceable": false, "collision_shapes": [ 51 ] }, { "id": 27285, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27286, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -526816,45 +390381,35 @@ ] }, "properties": [ - 1153540366, - 17521926, - 160757054, - -246124358, - 795783032, - 1170282908 + 1835381144, + 699362704, + 842597832, + -52700471, + 989206919, + 1852123686 ], "default_state_id": 27290, "states": [ { "id": 27287, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 27288, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -526863,17 +390418,12 @@ }, { "id": 27289, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -526882,34 +390432,24 @@ }, { "id": 27290, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109 ] }, { "id": 27291, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -526918,17 +390458,12 @@ }, { "id": 27292, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -526937,115 +390472,80 @@ }, { "id": 27293, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27294, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 27295, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 27296, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27297, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 27298, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113 ] }, { "id": 27299, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -527053,17 +390553,12 @@ }, { "id": 27300, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527073,17 +390568,12 @@ }, { "id": 27301, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527093,17 +390583,12 @@ }, { "id": 27302, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -527111,17 +390596,12 @@ }, { "id": 27303, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527131,17 +390611,12 @@ }, { "id": 27304, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527151,34 +390626,24 @@ }, { "id": 27305, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 27306, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527186,17 +390651,12 @@ }, { "id": 27307, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527204,34 +390664,24 @@ }, { "id": 27308, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 27309, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527239,17 +390689,12 @@ }, { "id": 27310, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527257,17 +390702,12 @@ }, { "id": 27311, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -527275,17 +390715,12 @@ }, { "id": 27312, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527295,17 +390730,12 @@ }, { "id": 27313, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527315,17 +390745,12 @@ }, { "id": 27314, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114 @@ -527333,17 +390758,12 @@ }, { "id": 27315, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527353,17 +390773,12 @@ }, { "id": 27316, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527373,34 +390788,24 @@ }, { "id": 27317, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 27318, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527408,17 +390813,12 @@ }, { "id": 27319, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527426,34 +390826,24 @@ }, { "id": 27320, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115 ] }, { "id": 27321, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527461,17 +390851,12 @@ }, { "id": 27322, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 116 @@ -527479,17 +390864,12 @@ }, { "id": 27323, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -527497,17 +390877,12 @@ }, { "id": 27324, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527517,17 +390892,12 @@ }, { "id": 27325, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527537,17 +390907,12 @@ }, { "id": 27326, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -527555,17 +390920,12 @@ }, { "id": 27327, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527575,17 +390935,12 @@ }, { "id": 27328, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527595,34 +390950,24 @@ }, { "id": 27329, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 27330, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -527630,17 +390975,12 @@ }, { "id": 27331, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -527648,34 +390988,24 @@ }, { "id": 27332, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 27333, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -527683,17 +391013,12 @@ }, { "id": 27334, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -527701,17 +391026,12 @@ }, { "id": 27335, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -527720,17 +391040,12 @@ }, { "id": 27336, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527741,17 +391056,12 @@ }, { "id": 27337, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527762,17 +391072,12 @@ }, { "id": 27338, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -527781,17 +391086,12 @@ }, { "id": 27339, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527802,17 +391102,12 @@ }, { "id": 27340, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527823,34 +391118,24 @@ }, { "id": 27341, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27342, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -527859,17 +391144,12 @@ }, { "id": 27343, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -527878,34 +391158,24 @@ }, { "id": 27344, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27345, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -527914,17 +391184,12 @@ }, { "id": 27346, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -527933,17 +391198,12 @@ }, { "id": 27347, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -527952,17 +391212,12 @@ }, { "id": 27348, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527973,17 +391228,12 @@ }, { "id": 27349, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -527994,17 +391244,12 @@ }, { "id": 27350, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -528013,17 +391258,12 @@ }, { "id": 27351, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528034,17 +391274,12 @@ }, { "id": 27352, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528055,34 +391290,24 @@ }, { "id": 27353, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27354, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528091,17 +391316,12 @@ }, { "id": 27355, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528110,34 +391330,24 @@ }, { "id": 27356, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27357, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528146,17 +391356,12 @@ }, { "id": 27358, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528165,17 +391370,12 @@ }, { "id": 27359, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -528183,17 +391383,12 @@ }, { "id": 27360, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528203,17 +391398,12 @@ }, { "id": 27361, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528223,17 +391413,12 @@ }, { "id": 27362, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117 @@ -528241,17 +391426,12 @@ }, { "id": 27363, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528261,17 +391441,12 @@ }, { "id": 27364, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528281,34 +391456,24 @@ }, { "id": 27365, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 27366, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -528316,17 +391481,12 @@ }, { "id": 27367, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -528334,34 +391494,24 @@ }, { "id": 27368, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118 ] }, { "id": 27369, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -528369,17 +391519,12 @@ }, { "id": 27370, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119 @@ -528387,17 +391532,12 @@ }, { "id": 27371, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -528406,17 +391546,12 @@ }, { "id": 27372, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528427,17 +391562,12 @@ }, { "id": 27373, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528448,17 +391578,12 @@ }, { "id": 27374, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -528467,17 +391592,12 @@ }, { "id": 27375, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528488,17 +391608,12 @@ }, { "id": 27376, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528509,34 +391624,24 @@ }, { "id": 27377, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27378, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528545,17 +391650,12 @@ }, { "id": 27379, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528564,34 +391664,24 @@ }, { "id": 27380, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27381, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528600,17 +391690,12 @@ }, { "id": 27382, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528619,17 +391704,12 @@ }, { "id": 27383, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -528638,17 +391718,12 @@ }, { "id": 27384, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528659,17 +391734,12 @@ }, { "id": 27385, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528680,17 +391750,12 @@ }, { "id": 27386, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -528699,17 +391764,12 @@ }, { "id": 27387, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528720,17 +391780,12 @@ }, { "id": 27388, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 110, 111, @@ -528741,34 +391796,24 @@ }, { "id": 27389, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27390, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528777,17 +391822,12 @@ }, { "id": 27391, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528796,34 +391836,24 @@ }, { "id": 27392, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120 ] }, { "id": 27393, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528832,17 +391862,12 @@ }, { "id": 27394, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 113, 119, @@ -528851,17 +391876,12 @@ }, { "id": 27395, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -528869,17 +391889,12 @@ }, { "id": 27396, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -528888,17 +391903,12 @@ }, { "id": 27397, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -528907,17 +391917,12 @@ }, { "id": 27398, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -528925,17 +391930,12 @@ }, { "id": 27399, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -528944,17 +391944,12 @@ }, { "id": 27400, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -528963,119 +391958,84 @@ }, { "id": 27401, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 27402, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27403, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27404, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 27405, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27406, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27407, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -529084,17 +392044,12 @@ }, { "id": 27408, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529104,17 +392059,12 @@ }, { "id": 27409, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529124,17 +392074,12 @@ }, { "id": 27410, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -529143,17 +392088,12 @@ }, { "id": 27411, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529163,17 +392103,12 @@ }, { "id": 27412, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529183,17 +392118,12 @@ }, { "id": 27413, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -529201,17 +392131,12 @@ }, { "id": 27414, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529219,17 +392144,12 @@ }, { "id": 27415, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529237,17 +392157,12 @@ }, { "id": 27416, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -529255,17 +392170,12 @@ }, { "id": 27417, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529273,17 +392183,12 @@ }, { "id": 27418, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529291,17 +392196,12 @@ }, { "id": 27419, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -529310,17 +392210,12 @@ }, { "id": 27420, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529330,17 +392225,12 @@ }, { "id": 27421, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529350,17 +392240,12 @@ }, { "id": 27422, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -529369,17 +392254,12 @@ }, { "id": 27423, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529389,17 +392269,12 @@ }, { "id": 27424, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529409,17 +392284,12 @@ }, { "id": 27425, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -529427,17 +392297,12 @@ }, { "id": 27426, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529445,17 +392310,12 @@ }, { "id": 27427, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529463,17 +392323,12 @@ }, { "id": 27428, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -529481,17 +392336,12 @@ }, { "id": 27429, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529499,17 +392349,12 @@ }, { "id": 27430, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -529517,17 +392362,12 @@ }, { "id": 27431, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -529536,17 +392376,12 @@ }, { "id": 27432, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529556,17 +392391,12 @@ }, { "id": 27433, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529576,17 +392406,12 @@ }, { "id": 27434, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -529595,17 +392420,12 @@ }, { "id": 27435, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529615,17 +392435,12 @@ }, { "id": 27436, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529635,17 +392450,12 @@ }, { "id": 27437, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -529653,17 +392463,12 @@ }, { "id": 27438, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -529671,17 +392476,12 @@ }, { "id": 27439, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -529689,17 +392489,12 @@ }, { "id": 27440, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -529707,17 +392502,12 @@ }, { "id": 27441, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -529725,17 +392515,12 @@ }, { "id": 27442, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -529743,17 +392528,12 @@ }, { "id": 27443, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -529763,17 +392543,12 @@ }, { "id": 27444, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529784,17 +392559,12 @@ }, { "id": 27445, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529805,17 +392575,12 @@ }, { "id": 27446, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -529825,17 +392590,12 @@ }, { "id": 27447, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529846,17 +392606,12 @@ }, { "id": 27448, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -529867,17 +392622,12 @@ }, { "id": 27449, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -529885,17 +392635,12 @@ }, { "id": 27450, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -529904,17 +392649,12 @@ }, { "id": 27451, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -529923,17 +392663,12 @@ }, { "id": 27452, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -529941,17 +392676,12 @@ }, { "id": 27453, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -529960,17 +392690,12 @@ }, { "id": 27454, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -529979,17 +392704,12 @@ }, { "id": 27455, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -529999,17 +392719,12 @@ }, { "id": 27456, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530020,17 +392735,12 @@ }, { "id": 27457, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530041,17 +392751,12 @@ }, { "id": 27458, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530061,17 +392766,12 @@ }, { "id": 27459, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530082,17 +392782,12 @@ }, { "id": 27460, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530103,17 +392798,12 @@ }, { "id": 27461, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -530121,17 +392811,12 @@ }, { "id": 27462, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530140,17 +392825,12 @@ }, { "id": 27463, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530159,17 +392839,12 @@ }, { "id": 27464, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -530177,17 +392852,12 @@ }, { "id": 27465, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530196,17 +392866,12 @@ }, { "id": 27466, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530215,17 +392880,12 @@ }, { "id": 27467, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530234,17 +392894,12 @@ }, { "id": 27468, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530254,17 +392909,12 @@ }, { "id": 27469, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530274,17 +392924,12 @@ }, { "id": 27470, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530293,17 +392938,12 @@ }, { "id": 27471, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530313,17 +392953,12 @@ }, { "id": 27472, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530333,17 +392968,12 @@ }, { "id": 27473, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -530351,17 +392981,12 @@ }, { "id": 27474, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -530369,17 +392994,12 @@ }, { "id": 27475, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -530387,17 +393007,12 @@ }, { "id": 27476, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -530405,17 +393020,12 @@ }, { "id": 27477, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -530423,17 +393033,12 @@ }, { "id": 27478, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -530441,17 +393046,12 @@ }, { "id": 27479, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530461,17 +393061,12 @@ }, { "id": 27480, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530482,17 +393077,12 @@ }, { "id": 27481, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530503,17 +393093,12 @@ }, { "id": 27482, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530523,17 +393108,12 @@ }, { "id": 27483, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530544,17 +393124,12 @@ }, { "id": 27484, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530565,17 +393140,12 @@ }, { "id": 27485, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -530583,17 +393153,12 @@ }, { "id": 27486, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530602,17 +393167,12 @@ }, { "id": 27487, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530621,17 +393181,12 @@ }, { "id": 27488, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -530639,17 +393194,12 @@ }, { "id": 27489, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530658,17 +393208,12 @@ }, { "id": 27490, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530677,17 +393222,12 @@ }, { "id": 27491, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530697,17 +393237,12 @@ }, { "id": 27492, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530718,17 +393253,12 @@ }, { "id": 27493, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530739,17 +393269,12 @@ }, { "id": 27494, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -530759,17 +393284,12 @@ }, { "id": 27495, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530780,17 +393300,12 @@ }, { "id": 27496, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530801,17 +393316,12 @@ }, { "id": 27497, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -530819,17 +393329,12 @@ }, { "id": 27498, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530838,17 +393343,12 @@ }, { "id": 27499, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530857,17 +393357,12 @@ }, { "id": 27500, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -530875,17 +393370,12 @@ }, { "id": 27501, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530894,17 +393384,12 @@ }, { "id": 27502, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -530913,17 +393398,12 @@ }, { "id": 27503, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -530931,17 +393411,12 @@ }, { "id": 27504, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530950,17 +393425,12 @@ }, { "id": 27505, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -530969,17 +393439,12 @@ }, { "id": 27506, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 121 @@ -530987,17 +393452,12 @@ }, { "id": 27507, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531006,17 +393466,12 @@ }, { "id": 27508, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531025,119 +393480,84 @@ }, { "id": 27509, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 27510, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27511, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27512, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 123 ] }, { "id": 27513, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27514, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122 ] }, { "id": 27515, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -531146,17 +393566,12 @@ }, { "id": 27516, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531166,17 +393581,12 @@ }, { "id": 27517, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531186,17 +393596,12 @@ }, { "id": 27518, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -531205,17 +393610,12 @@ }, { "id": 27519, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531225,17 +393625,12 @@ }, { "id": 27520, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531245,17 +393640,12 @@ }, { "id": 27521, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -531263,17 +393653,12 @@ }, { "id": 27522, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531281,17 +393666,12 @@ }, { "id": 27523, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531299,17 +393679,12 @@ }, { "id": 27524, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -531317,17 +393692,12 @@ }, { "id": 27525, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531335,17 +393705,12 @@ }, { "id": 27526, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531353,17 +393718,12 @@ }, { "id": 27527, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -531372,17 +393732,12 @@ }, { "id": 27528, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531392,17 +393747,12 @@ }, { "id": 27529, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531412,17 +393762,12 @@ }, { "id": 27530, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 114, @@ -531431,17 +393776,12 @@ }, { "id": 27531, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531451,17 +393791,12 @@ }, { "id": 27532, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531471,17 +393806,12 @@ }, { "id": 27533, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -531489,17 +393819,12 @@ }, { "id": 27534, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531507,17 +393832,12 @@ }, { "id": 27535, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531525,17 +393845,12 @@ }, { "id": 27536, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 115, 124 @@ -531543,17 +393858,12 @@ }, { "id": 27537, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531561,17 +393871,12 @@ }, { "id": 27538, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 116 @@ -531579,17 +393884,12 @@ }, { "id": 27539, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -531598,17 +393898,12 @@ }, { "id": 27540, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531618,17 +393913,12 @@ }, { "id": 27541, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531638,17 +393928,12 @@ }, { "id": 27542, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -531657,17 +393942,12 @@ }, { "id": 27543, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531677,17 +393957,12 @@ }, { "id": 27544, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531697,17 +393972,12 @@ }, { "id": 27545, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -531715,17 +393985,12 @@ }, { "id": 27546, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -531733,17 +393998,12 @@ }, { "id": 27547, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -531751,17 +394011,12 @@ }, { "id": 27548, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -531769,17 +394024,12 @@ }, { "id": 27549, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -531787,17 +394037,12 @@ }, { "id": 27550, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -531805,17 +394050,12 @@ }, { "id": 27551, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -531825,17 +394065,12 @@ }, { "id": 27552, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531846,17 +394081,12 @@ }, { "id": 27553, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531867,17 +394097,12 @@ }, { "id": 27554, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -531887,17 +394112,12 @@ }, { "id": 27555, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531908,17 +394128,12 @@ }, { "id": 27556, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -531929,17 +394144,12 @@ }, { "id": 27557, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -531947,17 +394157,12 @@ }, { "id": 27558, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -531966,17 +394171,12 @@ }, { "id": 27559, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -531985,17 +394185,12 @@ }, { "id": 27560, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532003,17 +394198,12 @@ }, { "id": 27561, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532022,17 +394212,12 @@ }, { "id": 27562, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532041,17 +394226,12 @@ }, { "id": 27563, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532061,17 +394241,12 @@ }, { "id": 27564, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532082,17 +394257,12 @@ }, { "id": 27565, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532103,17 +394273,12 @@ }, { "id": 27566, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532123,17 +394288,12 @@ }, { "id": 27567, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532144,17 +394304,12 @@ }, { "id": 27568, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532165,17 +394320,12 @@ }, { "id": 27569, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532183,17 +394333,12 @@ }, { "id": 27570, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532202,17 +394347,12 @@ }, { "id": 27571, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532221,17 +394361,12 @@ }, { "id": 27572, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532239,17 +394374,12 @@ }, { "id": 27573, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532258,17 +394388,12 @@ }, { "id": 27574, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532277,17 +394402,12 @@ }, { "id": 27575, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532296,17 +394416,12 @@ }, { "id": 27576, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532316,17 +394431,12 @@ }, { "id": 27577, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532336,17 +394446,12 @@ }, { "id": 27578, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532355,17 +394460,12 @@ }, { "id": 27579, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532375,17 +394475,12 @@ }, { "id": 27580, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532395,17 +394490,12 @@ }, { "id": 27581, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -532413,17 +394503,12 @@ }, { "id": 27582, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -532431,17 +394516,12 @@ }, { "id": 27583, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -532449,17 +394529,12 @@ }, { "id": 27584, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 118, 124 @@ -532467,17 +394542,12 @@ }, { "id": 27585, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -532485,17 +394555,12 @@ }, { "id": 27586, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119 @@ -532503,17 +394568,12 @@ }, { "id": 27587, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532523,17 +394583,12 @@ }, { "id": 27588, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532544,17 +394599,12 @@ }, { "id": 27589, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532565,17 +394615,12 @@ }, { "id": 27590, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532585,17 +394630,12 @@ }, { "id": 27591, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532606,17 +394646,12 @@ }, { "id": 27592, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532627,17 +394662,12 @@ }, { "id": 27593, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532645,17 +394675,12 @@ }, { "id": 27594, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532664,17 +394689,12 @@ }, { "id": 27595, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532683,17 +394703,12 @@ }, { "id": 27596, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532701,17 +394716,12 @@ }, { "id": 27597, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532720,17 +394730,12 @@ }, { "id": 27598, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532739,17 +394744,12 @@ }, { "id": 27599, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532759,17 +394759,12 @@ }, { "id": 27600, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532780,17 +394775,12 @@ }, { "id": 27601, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532801,17 +394791,12 @@ }, { "id": 27602, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 109, 117, @@ -532821,17 +394806,12 @@ }, { "id": 27603, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532842,17 +394822,12 @@ }, { "id": 27604, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 111, @@ -532863,17 +394838,12 @@ }, { "id": 27605, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532881,17 +394851,12 @@ }, { "id": 27606, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532900,17 +394865,12 @@ }, { "id": 27607, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532919,17 +394879,12 @@ }, { "id": 27608, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 120, 124 @@ -532937,17 +394892,12 @@ }, { "id": 27609, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -532956,17 +394906,12 @@ }, { "id": 27610, - "air": false, - "is_solid": true, + "state_flags": 68, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 122, 119, @@ -533011,17 +394956,12 @@ "states": [ { "id": 27611, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533064,17 +395004,12 @@ "states": [ { "id": 27612, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533117,17 +395052,12 @@ "states": [ { "id": 27613, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 3.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533178,57 +395108,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 27615, "states": [ { "id": 27614, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27615, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27616, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533271,17 +395186,12 @@ "states": [ { "id": 27617, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 1.25, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533324,17 +395234,12 @@ "states": [ { "id": 27618, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533377,17 +395282,12 @@ "states": [ { "id": 27619, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533430,17 +395330,12 @@ "states": [ { "id": 27620, - "air": false, - "is_solid": true, + "state_flags": 196, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": true, + "piston_behavior": "NORMAL", "hardness": 5.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533498,16 +395393,11 @@ "states": [ { "id": 27621, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -533565,16 +395455,11 @@ "states": [ { "id": 27622, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -533613,57 +395498,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 27624, "states": [ { "id": 27623, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27624, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27625, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533702,57 +395572,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 27627, "states": [ { "id": 27626, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27627, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27628, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533791,57 +395646,42 @@ ] }, "properties": [ - 2039405382 + 957115720 ], "default_state_id": 27630, "states": [ { "id": 27629, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27630, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] }, { "id": 27631, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 15, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 0.3, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533867,16 +395707,11 @@ "states": [ { "id": 27632, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -533900,17 +395735,12 @@ "states": [ { "id": 27633, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 55.0, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -533971,24 +395801,19 @@ ] }, "properties": [ - 778783224, - -1870206692, - 795783032 + 972207111, + 1877134791, + 989206919 ], "default_state_id": 27643, "states": [ { "id": 27634, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -533996,16 +395821,11 @@ }, { "id": 27635, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534013,16 +395833,11 @@ }, { "id": 27636, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534030,16 +395845,11 @@ }, { "id": 27637, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534047,16 +395857,11 @@ }, { "id": 27638, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534064,16 +395869,11 @@ }, { "id": 27639, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534081,16 +395881,11 @@ }, { "id": 27640, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534098,16 +395893,11 @@ }, { "id": 27641, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534115,16 +395905,11 @@ }, { "id": 27642, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534132,16 +395917,11 @@ }, { "id": 27643, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534149,16 +395929,11 @@ }, { "id": 27644, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534166,16 +395941,11 @@ }, { "id": 27645, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534183,16 +395953,11 @@ }, { "id": 27646, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534200,16 +395965,11 @@ }, { "id": 27647, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534217,16 +395977,11 @@ }, { "id": 27648, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534234,16 +395989,11 @@ }, { "id": 27649, - "air": false, - "is_solid": true, + "state_flags": 64, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 144 ], @@ -534283,25 +396033,20 @@ ] }, "properties": [ - 1464394721, - -1177335375, - -894880138 + 1657818608, + 1211358312, + -701456251 ], "default_state_id": 27695, "states": [ { "id": 27650, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534309,17 +396054,12 @@ }, { "id": 27651, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534327,17 +396067,12 @@ }, { "id": 27652, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534345,17 +396080,12 @@ }, { "id": 27653, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534363,17 +396093,12 @@ }, { "id": 27654, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534381,17 +396106,12 @@ }, { "id": 27655, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534399,17 +396119,12 @@ }, { "id": 27656, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534417,17 +396132,12 @@ }, { "id": 27657, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534435,17 +396145,12 @@ }, { "id": 27658, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534453,17 +396158,12 @@ }, { "id": 27659, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534471,17 +396171,12 @@ }, { "id": 27660, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534489,17 +396184,12 @@ }, { "id": 27661, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534507,17 +396197,12 @@ }, { "id": 27662, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534525,17 +396210,12 @@ }, { "id": 27663, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534543,17 +396223,12 @@ }, { "id": 27664, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534561,17 +396236,12 @@ }, { "id": 27665, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534579,17 +396249,12 @@ }, { "id": 27666, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534597,17 +396262,12 @@ }, { "id": 27667, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534615,17 +396275,12 @@ }, { "id": 27668, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534633,17 +396288,12 @@ }, { "id": 27669, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534651,17 +396301,12 @@ }, { "id": 27670, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534669,17 +396314,12 @@ }, { "id": 27671, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534687,17 +396327,12 @@ }, { "id": 27672, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534705,17 +396340,12 @@ }, { "id": 27673, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534723,17 +396353,12 @@ }, { "id": 27674, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534741,17 +396366,12 @@ }, { "id": 27675, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534759,17 +396379,12 @@ }, { "id": 27676, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534777,17 +396392,12 @@ }, { "id": 27677, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534795,17 +396405,12 @@ }, { "id": 27678, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534813,17 +396418,12 @@ }, { "id": 27679, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534831,17 +396431,12 @@ }, { "id": 27680, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534849,17 +396444,12 @@ }, { "id": 27681, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534867,17 +396457,12 @@ }, { "id": 27682, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534885,17 +396470,12 @@ }, { "id": 27683, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534903,17 +396483,12 @@ }, { "id": 27684, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534921,17 +396496,12 @@ }, { "id": 27685, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534939,17 +396509,12 @@ }, { "id": 27686, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534957,17 +396522,12 @@ }, { "id": 27687, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534975,17 +396535,12 @@ }, { "id": 27688, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -534993,17 +396548,12 @@ }, { "id": 27689, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535011,17 +396561,12 @@ }, { "id": 27690, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535029,17 +396574,12 @@ }, { "id": 27691, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535047,17 +396587,12 @@ }, { "id": 27692, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535065,17 +396600,12 @@ }, { "id": 27693, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535083,17 +396613,12 @@ }, { "id": 27694, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535101,17 +396626,12 @@ }, { "id": 27695, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535119,17 +396639,12 @@ }, { "id": 27696, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535137,17 +396652,12 @@ }, { "id": 27697, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 1.5, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535170,23 +396680,18 @@ "random_sequence": "minecraft:blocks/trial_spawner" }, "properties": [ - -1591500023, - -1729588571 + -1398076136, + -761435 ], "default_state_id": 27704, "states": [ { "id": 27698, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535194,16 +396699,11 @@ }, { "id": 27699, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535211,16 +396711,11 @@ }, { "id": 27700, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535228,16 +396723,11 @@ }, { "id": 27701, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535245,16 +396735,11 @@ }, { "id": 27702, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535262,16 +396747,11 @@ }, { "id": 27703, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535279,16 +396759,11 @@ }, { "id": 27704, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535296,16 +396771,11 @@ }, { "id": 27705, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 4, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535313,16 +396783,11 @@ }, { "id": 27706, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535330,16 +396795,11 @@ }, { "id": 27707, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535347,16 +396807,11 @@ }, { "id": 27708, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 8, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535364,16 +396819,11 @@ }, { "id": 27709, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535396,24 +396846,19 @@ "random_sequence": "minecraft:blocks/vault" }, "properties": [ - -1870206692, - -1591500023, - -30697821 + 1877134791, + -1398076136, + -1947359596 ], "default_state_id": 27714, "states": [ { "id": 27710, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535421,16 +396866,11 @@ }, { "id": 27711, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535438,16 +396878,11 @@ }, { "id": 27712, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535455,16 +396890,11 @@ }, { "id": 27713, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535472,16 +396902,11 @@ }, { "id": 27714, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535489,16 +396914,11 @@ }, { "id": 27715, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535506,16 +396926,11 @@ }, { "id": 27716, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535523,16 +396938,11 @@ }, { "id": 27717, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535540,16 +396950,11 @@ }, { "id": 27718, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535557,16 +396962,11 @@ }, { "id": 27719, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535574,16 +396974,11 @@ }, { "id": 27720, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535591,16 +396986,11 @@ }, { "id": 27721, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535608,16 +396998,11 @@ }, { "id": 27722, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535625,16 +397010,11 @@ }, { "id": 27723, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535642,16 +397022,11 @@ }, { "id": 27724, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535659,16 +397034,11 @@ }, { "id": 27725, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535676,16 +397046,11 @@ }, { "id": 27726, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535693,16 +397058,11 @@ }, { "id": 27727, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535710,16 +397070,11 @@ }, { "id": 27728, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535727,16 +397082,11 @@ }, { "id": 27729, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535744,16 +397094,11 @@ }, { "id": 27730, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535761,16 +397106,11 @@ }, { "id": 27731, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535778,16 +397118,11 @@ }, { "id": 27732, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535795,16 +397130,11 @@ }, { "id": 27733, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535812,16 +397142,11 @@ }, { "id": 27734, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535829,16 +397154,11 @@ }, { "id": 27735, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535846,16 +397166,11 @@ }, { "id": 27736, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535863,16 +397178,11 @@ }, { "id": 27737, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535880,16 +397190,11 @@ }, { "id": 27738, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 6, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535897,16 +397202,11 @@ }, { "id": 27739, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535914,16 +397214,11 @@ }, { "id": 27740, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535931,16 +397226,11 @@ }, { "id": 27741, - "air": false, - "is_solid": true, + "state_flags": 192, "instrument": "BASEDRUM", - "is_liquid": false, "luminance": 12, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 50.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ], @@ -535980,40 +397270,30 @@ ] }, "properties": [ - 795783032 + 989206919 ], "default_state_id": 27743, "states": [ { "id": 27742, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 1, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ] }, { "id": 27743, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "SNARE", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "NORMAL", "hardness": 10.0, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 158 ] @@ -536056,17 +397336,12 @@ "states": [ { "id": 27744, - "air": false, - "is_solid": true, + "state_flags": 194, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 15, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 0 ] @@ -536114,2604 +397389,1794 @@ ] }, "properties": [ - -1629356982, - 1153540366, - 17521926, - 160757054, - 1170282908 + -1435933095, + 1835381144, + 699362704, + 842597832, + 1852123686 ], "default_state_id": 27745, "states": [ { "id": 27745, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27746, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27747, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27748, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27749, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27750, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27751, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27752, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27753, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27754, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27755, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27756, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27757, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27758, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27759, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27760, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27761, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27762, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27763, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27764, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27765, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27766, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27767, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27768, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27769, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27770, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27771, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27772, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27773, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27774, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27775, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27776, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27777, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27778, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27779, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27780, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27781, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27782, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27783, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27784, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27785, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27786, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27787, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27788, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27789, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27790, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27791, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27792, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27793, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27794, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27795, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27796, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27797, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27798, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27799, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27800, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27801, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27802, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27803, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27804, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27805, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27806, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27807, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27808, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27809, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27810, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27811, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27812, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27813, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27814, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27815, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27816, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27817, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27818, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27819, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27820, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27821, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27822, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27823, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27824, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27825, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 202 ] }, { "id": 27826, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27827, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27828, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27829, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27830, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27831, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27832, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27833, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27834, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27835, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27836, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27837, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27838, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27839, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27840, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27841, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27842, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27843, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27844, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27845, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27846, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27847, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27848, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27849, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27850, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27851, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27852, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27853, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27854, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27855, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27856, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27857, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27858, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27859, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27860, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27861, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27862, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27863, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27864, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27865, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27866, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27867, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27868, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27869, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27870, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27871, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27872, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27873, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27874, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27875, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27876, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27877, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27878, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27879, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27880, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27881, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27882, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27883, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27884, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27885, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27886, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27887, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27888, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27889, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27890, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27891, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27892, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27893, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27894, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27895, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27896, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27897, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27898, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27899, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27900, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27901, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27902, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27903, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27904, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27905, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27906, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.1, "opacity": 0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -538771,36 +399236,26 @@ ] }, "properties": [ - -246013254 + -52589367 ], "default_state_id": 27907, "states": [ { "id": 27907, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] }, { "id": 27908, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -538841,16 +399296,11 @@ "states": [ { "id": 27909, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -538891,16 +399341,11 @@ "states": [ { "id": 27910, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] @@ -538956,16 +399401,11 @@ "states": [ { "id": 27911, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -539023,16 +399463,11 @@ "states": [ { "id": 27912, - "air": false, - "is_solid": false, + "state_flags": 0, "instrument": "HARP", - "is_liquid": false, "luminance": 0, - "burnable": false, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [ 157 ] @@ -539075,16 +399510,11 @@ "states": [ { "id": 27913, - "air": false, - "is_solid": false, + "state_flags": 2, "instrument": "HARP", - "is_liquid": false, "luminance": 2, - "burnable": true, - "tool_required": false, + "piston_behavior": "DESTROY", "hardness": 0.0, - "sided_transparency": false, - "replaceable": false, "collision_shapes": [] } ] diff --git a/assets/properties.json b/assets/properties.json index e18c39382..e7d8e7887 100644 --- a/assets/properties.json +++ b/assets/properties.json @@ -1,216 +1,216 @@ [ { - "hash_key": 292609987, + "hash_key": 486033874, "enum_name": "attached", "serialized_name": "attached", "type": "boolean" }, { - "hash_key": -464754605, + "hash_key": -271330718, "enum_name": "berries", "serialized_name": "berries", "type": "boolean" }, { - "hash_key": -152295390, + "hash_key": 41128497, "enum_name": "bloom", "serialized_name": "bloom", "type": "boolean" }, { - "hash_key": -1629356982, + "hash_key": -1435933095, "enum_name": "bottom", "serialized_name": "bottom", "type": "boolean" }, { - "hash_key": -1497647537, + "hash_key": -1304223650, "enum_name": "can_summon", "serialized_name": "can_summon", "type": "boolean" }, { - "hash_key": 962003109, + "hash_key": 1155426996, "enum_name": "conditional", "serialized_name": "conditional", "type": "boolean" }, { - "hash_key": 25290316, + "hash_key": 218714203, "enum_name": "disarmed", "serialized_name": "disarmed", "type": "boolean" }, { - "hash_key": -243036333, + "hash_key": -49612446, "enum_name": "drag", "serialized_name": "drag", "type": "boolean" }, { - "hash_key": -1855722144, + "hash_key": -1662298257, "enum_name": "enabled", "serialized_name": "enabled", "type": "boolean" }, { - "hash_key": -2067017896, + "hash_key": -1873594009, "enum_name": "extended", "serialized_name": "extended", "type": "boolean" }, { - "hash_key": -246027184, + "hash_key": -52603297, "enum_name": "eye", "serialized_name": "eye", "type": "boolean" }, { - "hash_key": -1329943386, + "hash_key": -1136519499, "enum_name": "falling", "serialized_name": "falling", "type": "boolean" }, { - "hash_key": 446762063, + "hash_key": 640185950, "enum_name": "hanging", "serialized_name": "hanging", "type": "boolean" }, { - "hash_key": -1088906725, + "hash_key": -895482838, "enum_name": "has_bottle_0", "serialized_name": "has_bottle_0", "type": "boolean" }, { - "hash_key": -1088906724, + "hash_key": -895482837, "enum_name": "has_bottle_1", "serialized_name": "has_bottle_1", "type": "boolean" }, { - "hash_key": -1088906723, + "hash_key": -895482836, "enum_name": "has_bottle_2", "serialized_name": "has_bottle_2", "type": "boolean" }, { - "hash_key": 1895167925, + "hash_key": 2088591812, "enum_name": "has_record", "serialized_name": "has_record", "type": "boolean" }, { - "hash_key": -105819251, + "hash_key": 87604636, "enum_name": "has_book", "serialized_name": "has_book", "type": "boolean" }, { - "hash_key": 381546772, + "hash_key": 574970659, "enum_name": "inverted", "serialized_name": "inverted", "type": "boolean" }, { - "hash_key": 1693060803, + "hash_key": 1886484690, "enum_name": "in_wall", "serialized_name": "in_wall", "type": "boolean" }, { - "hash_key": -246020938, + "hash_key": -52597051, "enum_name": "lit", "serialized_name": "lit", "type": "boolean" }, { - "hash_key": -1343580887, + "hash_key": -1150157000, "enum_name": "locked", "serialized_name": "locked", "type": "boolean" }, { - "hash_key": 1482783304, + "hash_key": 1676207191, "enum_name": "natural", "serialized_name": "natural", "type": "boolean" }, { - "hash_key": 546620605, + "hash_key": 740044492, "enum_name": "occupied", "serialized_name": "occupied", "type": "boolean" }, { - "hash_key": -242710423, + "hash_key": -49286536, "enum_name": "open", "serialized_name": "open", "type": "boolean" }, { - "hash_key": 266334390, + "hash_key": 459758277, "enum_name": "persistent", "serialized_name": "persistent", "type": "boolean" }, { - "hash_key": -634074493, + "hash_key": -440650606, "enum_name": "powered", "serialized_name": "powered", "type": "boolean" }, { - "hash_key": -136714597, + "hash_key": 56709290, "enum_name": "short", "serialized_name": "short", "type": "boolean" }, { - "hash_key": 117520335, + "hash_key": 310944222, "enum_name": "shrieking", "serialized_name": "shrieking", "type": "boolean" }, { - "hash_key": 426544012, + "hash_key": 619967899, "enum_name": "signal_fire", "serialized_name": "signal_fire", "type": "boolean" }, { - "hash_key": -136535691, + "hash_key": 56888196, "enum_name": "snowy", "serialized_name": "snowy", "type": "boolean" }, { - "hash_key": -246013254, + "hash_key": -52589367, "enum_name": "tip", "serialized_name": "tip", "type": "boolean" }, { - "hash_key": -894880138, + "hash_key": -701456251, "enum_name": "triggered", "serialized_name": "triggered", "type": "boolean" }, { - "hash_key": -252123853, + "hash_key": -58699966, "enum_name": "unstable", "serialized_name": "unstable", "type": "boolean" }, { - "hash_key": 795783032, + "hash_key": 989206919, "enum_name": "waterlogged", "serialized_name": "waterlogged", "type": "boolean" }, { - "hash_key": 612676314, + "hash_key": -629560146, "enum_name": "horizontal_axis", "serialized_name": "axis", "type": "enum", @@ -220,7 +220,7 @@ ] }, { - "hash_key": 2039405382, + "hash_key": 957115720, "enum_name": "axis", "serialized_name": "axis", "type": "enum", @@ -231,43 +231,43 @@ ] }, { - "hash_key": -246124358, + "hash_key": -52700471, "enum_name": "up", "serialized_name": "up", "type": "boolean" }, { - "hash_key": -243038527, + "hash_key": -49614640, "enum_name": "down", "serialized_name": "down", "type": "boolean" }, { - "hash_key": -141120732, + "hash_key": 52303155, "enum_name": "north", "serialized_name": "north", "type": "boolean" }, { - "hash_key": -243022308, + "hash_key": -49598421, "enum_name": "east", "serialized_name": "east", "type": "boolean" }, { - "hash_key": -136500244, + "hash_key": 56923643, "enum_name": "south", "serialized_name": "south", "type": "boolean" }, { - "hash_key": -242482226, + "hash_key": -49058339, "enum_name": "west", "serialized_name": "west", "type": "boolean" }, { - "hash_key": 1627058566, + "hash_key": 2060047744, "enum_name": "facing", "serialized_name": "facing", "type": "enum", @@ -281,7 +281,7 @@ ] }, { - "hash_key": -27495672, + "hash_key": 1345658728, "enum_name": "hopper_facing", "serialized_name": "facing", "type": "enum", @@ -294,7 +294,7 @@ ] }, { - "hash_key": -1870206692, + "hash_key": 1877134791, "enum_name": "horizontal_facing", "serialized_name": "facing", "type": "enum", @@ -306,7 +306,7 @@ ] }, { - "hash_key": -21943977, + "hash_key": -666792146, "enum_name": "flower_amount", "serialized_name": "flower_amount", "type": "int", @@ -314,7 +314,7 @@ "max": 4 }, { - "hash_key": 159053359, + "hash_key": -485794810, "enum_name": "segment_amount", "serialized_name": "segment_amount", "type": "int", @@ -322,7 +322,7 @@ "max": 4 }, { - "hash_key": -1177335375, + "hash_key": 1211358312, "enum_name": "orientation", "serialized_name": "orientation", "type": "enum", @@ -342,7 +342,7 @@ ] }, { - "hash_key": 882382600, + "hash_key": -1094626518, "enum_name": "block_face", "serialized_name": "face", "type": "enum", @@ -353,7 +353,7 @@ ] }, { - "hash_key": 1698821785, + "hash_key": -1623305327, "enum_name": "attachment", "serialized_name": "attachment", "type": "enum", @@ -365,7 +365,7 @@ ] }, { - "hash_key": 1153540366, + "hash_key": 1835381144, "enum_name": "east_wall_shape", "serialized_name": "east", "type": "enum", @@ -376,7 +376,7 @@ ] }, { - "hash_key": 17521926, + "hash_key": 699362704, "enum_name": "north_wall_shape", "serialized_name": "north", "type": "enum", @@ -387,7 +387,7 @@ ] }, { - "hash_key": 160757054, + "hash_key": 842597832, "enum_name": "south_wall_shape", "serialized_name": "south", "type": "enum", @@ -398,7 +398,7 @@ ] }, { - "hash_key": 1170282908, + "hash_key": 1852123686, "enum_name": "west_wall_shape", "serialized_name": "west", "type": "enum", @@ -409,7 +409,7 @@ ] }, { - "hash_key": -1743221798, + "hash_key": 1497542719, "enum_name": "east_wire_connection", "serialized_name": "east", "type": "enum", @@ -420,7 +420,7 @@ ] }, { - "hash_key": 1415727058, + "hash_key": 361524279, "enum_name": "north_wire_connection", "serialized_name": "north", "type": "enum", @@ -431,7 +431,7 @@ ] }, { - "hash_key": 1558962186, + "hash_key": 504759407, "enum_name": "south_wire_connection", "serialized_name": "south", "type": "enum", @@ -442,7 +442,7 @@ ] }, { - "hash_key": -1726479256, + "hash_key": 1514285261, "enum_name": "west_wire_connection", "serialized_name": "west", "type": "enum", @@ -453,7 +453,7 @@ ] }, { - "hash_key": -771186830, + "hash_key": 833894292, "enum_name": "double_block_half", "serialized_name": "half", "type": "enum", @@ -463,7 +463,7 @@ ] }, { - "hash_key": 1572277146, + "hash_key": 1520831296, "enum_name": "block_half", "serialized_name": "half", "type": "enum", @@ -473,7 +473,7 @@ ] }, { - "hash_key": 513605714, + "hash_key": 1362710359, "enum_name": "rail_shape", "serialized_name": "shape", "type": "enum", @@ -491,7 +491,7 @@ ] }, { - "hash_key": 382516644, + "hash_key": -1920199656, "enum_name": "straight_rail_shape", "serialized_name": "shape", "type": "enum", @@ -505,7 +505,7 @@ ] }, { - "hash_key": 356708211, + "hash_key": -288139958, "enum_name": "age_1", "serialized_name": "age", "type": "int", @@ -513,7 +513,7 @@ "max": 1 }, { - "hash_key": 356737073, + "hash_key": -288111096, "enum_name": "age_2", "serialized_name": "age", "type": "int", @@ -521,7 +521,7 @@ "max": 2 }, { - "hash_key": 357631796, + "hash_key": -287216373, "enum_name": "age_3", "serialized_name": "age", "type": "int", @@ -529,7 +529,7 @@ "max": 3 }, { - "hash_key": 385368210, + "hash_key": -259479959, "enum_name": "age_4", "serialized_name": "age", "type": "int", @@ -537,7 +537,7 @@ "max": 4 }, { - "hash_key": 1245197045, + "hash_key": 600348876, "enum_name": "age_5", "serialized_name": "age", "type": "int", @@ -545,7 +545,7 @@ "max": 5 }, { - "hash_key": -503090506, + "hash_key": -1147938675, "enum_name": "age_7", "serialized_name": "age", "type": "int", @@ -553,7 +553,7 @@ "max": 7 }, { - "hash_key": 1253390778, + "hash_key": 608542609, "enum_name": "age_15", "serialized_name": "age", "type": "int", @@ -561,7 +561,7 @@ "max": 15 }, { - "hash_key": 169292927, + "hash_key": -475555242, "enum_name": "age_25", "serialized_name": "age", "type": "int", @@ -569,7 +569,7 @@ "max": 25 }, { - "hash_key": 738310903, + "hash_key": 93462734, "enum_name": "bites", "serialized_name": "bites", "type": "int", @@ -577,7 +577,7 @@ "max": 6 }, { - "hash_key": 232622669, + "hash_key": -412225500, "enum_name": "candles", "serialized_name": "candles", "type": "int", @@ -585,7 +585,7 @@ "max": 4 }, { - "hash_key": -980791440, + "hash_key": -1625639609, "enum_name": "delay", "serialized_name": "delay", "type": "int", @@ -593,7 +593,7 @@ "max": 4 }, { - "hash_key": -898466722, + "hash_key": -1543314891, "enum_name": "distance_1_7", "serialized_name": "distance", "type": "int", @@ -601,7 +601,7 @@ "max": 7 }, { - "hash_key": 451117381, + "hash_key": -193730788, "enum_name": "eggs", "serialized_name": "eggs", "type": "int", @@ -609,7 +609,7 @@ "max": 4 }, { - "hash_key": -870654704, + "hash_key": -1515502873, "enum_name": "hatch", "serialized_name": "hatch", "type": "int", @@ -617,7 +617,7 @@ "max": 2 }, { - "hash_key": 2111860563, + "hash_key": 1467012394, "enum_name": "layers", "serialized_name": "layers", "type": "int", @@ -625,7 +625,7 @@ "max": 8 }, { - "hash_key": -752381395, + "hash_key": -1397229564, "enum_name": "level_3", "serialized_name": "level", "type": "int", @@ -633,7 +633,7 @@ "max": 3 }, { - "hash_key": -1636338833, + "hash_key": 2013780294, "enum_name": "level_8", "serialized_name": "level", "type": "int", @@ -641,7 +641,7 @@ "max": 8 }, { - "hash_key": 1047687505, + "hash_key": 402839336, "enum_name": "level_1_8", "serialized_name": "level", "type": "int", @@ -649,7 +649,7 @@ "max": 8 }, { - "hash_key": -388126060, + "hash_key": -1032974229, "enum_name": "honey_level", "serialized_name": "honey_level", "type": "int", @@ -657,7 +657,7 @@ "max": 5 }, { - "hash_key": 144271317, + "hash_key": -500576852, "enum_name": "level_15", "serialized_name": "level", "type": "int", @@ -665,7 +665,7 @@ "max": 15 }, { - "hash_key": -1964986603, + "hash_key": 1685132524, "enum_name": "moisture", "serialized_name": "moisture", "type": "int", @@ -673,7 +673,7 @@ "max": 7 }, { - "hash_key": -517152823, + "hash_key": -1162000992, "enum_name": "note", "serialized_name": "note", "type": "int", @@ -681,7 +681,7 @@ "max": 24 }, { - "hash_key": -384040614, + "hash_key": -1028888783, "enum_name": "pickles", "serialized_name": "pickles", "type": "int", @@ -689,7 +689,7 @@ "max": 4 }, { - "hash_key": 268053108, + "hash_key": -376795061, "enum_name": "power", "serialized_name": "power", "type": "int", @@ -697,7 +697,7 @@ "max": 15 }, { - "hash_key": -538778284, + "hash_key": -1183626453, "enum_name": "stage", "serialized_name": "stage", "type": "int", @@ -705,7 +705,7 @@ "max": 1 }, { - "hash_key": -153764224, + "hash_key": -798612393, "enum_name": "distance_0_7", "serialized_name": "distance", "type": "int", @@ -713,7 +713,7 @@ "max": 7 }, { - "hash_key": 1818488146, + "hash_key": 1173639977, "enum_name": "charges", "serialized_name": "charges", "type": "int", @@ -721,7 +721,7 @@ "max": 4 }, { - "hash_key": 1078043, + "hash_key": -643770126, "enum_name": "rotation", "serialized_name": "rotation", "type": "int", @@ -729,7 +729,7 @@ "max": 15 }, { - "hash_key": -1080896095, + "hash_key": -288759893, "enum_name": "bed_part", "serialized_name": "part", "type": "enum", @@ -739,7 +739,7 @@ ] }, { - "hash_key": -547018622, + "hash_key": 1490079803, "enum_name": "chest_type", "serialized_name": "type", "type": "enum", @@ -750,7 +750,7 @@ ] }, { - "hash_key": 1860068453, + "hash_key": -1349425465, "enum_name": "comparator_mode", "serialized_name": "mode", "type": "enum", @@ -760,7 +760,7 @@ ] }, { - "hash_key": 1361276694, + "hash_key": -184884443, "enum_name": "door_hinge", "serialized_name": "hinge", "type": "enum", @@ -770,7 +770,7 @@ ] }, { - "hash_key": 1720112440, + "hash_key": -988386285, "enum_name": "instrument", "serialized_name": "instrument", "type": "enum", @@ -801,7 +801,7 @@ ] }, { - "hash_key": 2136417609, + "hash_key": -1917342975, "enum_name": "piston_type", "serialized_name": "type", "type": "enum", @@ -811,7 +811,7 @@ ] }, { - "hash_key": -36255920, + "hash_key": 501738860, "enum_name": "slab_type", "serialized_name": "type", "type": "enum", @@ -822,7 +822,7 @@ ] }, { - "hash_key": 778491774, + "hash_key": 147639687, "enum_name": "stair_shape", "serialized_name": "shape", "type": "enum", @@ -835,7 +835,7 @@ ] }, { - "hash_key": -208752983, + "hash_key": 159298445, "enum_name": "structure_block_mode", "serialized_name": "mode", "type": "enum", @@ -847,7 +847,7 @@ ] }, { - "hash_key": -9007773, + "hash_key": 715473762, "enum_name": "bamboo_leaves", "serialized_name": "leaves", "type": "enum", @@ -858,7 +858,7 @@ ] }, { - "hash_key": 209513650, + "hash_key": -488886738, "enum_name": "tilt", "serialized_name": "tilt", "type": "enum", @@ -870,7 +870,7 @@ ] }, { - "hash_key": 554748355, + "hash_key": 1973640329, "enum_name": "vertical_direction", "serialized_name": "vertical_direction", "type": "enum", @@ -880,7 +880,7 @@ ] }, { - "hash_key": 1046549030, + "hash_key": 1349355829, "enum_name": "thickness", "serialized_name": "thickness", "type": "enum", @@ -893,7 +893,7 @@ ] }, { - "hash_key": -725648727, + "hash_key": -286744339, "enum_name": "sculk_sensor_phase", "serialized_name": "sculk_sensor_phase", "type": "enum", @@ -904,43 +904,43 @@ ] }, { - "hash_key": -1022489395, + "hash_key": -829065508, "enum_name": "slot_0_occupied", "serialized_name": "slot_0_occupied", "type": "boolean" }, { - "hash_key": -1219002900, + "hash_key": -1025579013, "enum_name": "slot_1_occupied", "serialized_name": "slot_1_occupied", "type": "boolean" }, { - "hash_key": -1415516405, + "hash_key": -1222092518, "enum_name": "slot_2_occupied", "serialized_name": "slot_2_occupied", "type": "boolean" }, { - "hash_key": -1612029910, + "hash_key": -1418606023, "enum_name": "slot_3_occupied", "serialized_name": "slot_3_occupied", "type": "boolean" }, { - "hash_key": -1808543415, + "hash_key": -1615119528, "enum_name": "slot_4_occupied", "serialized_name": "slot_4_occupied", "type": "boolean" }, { - "hash_key": -2005056920, + "hash_key": -1811633033, "enum_name": "slot_5_occupied", "serialized_name": "slot_5_occupied", "type": "boolean" }, { - "hash_key": -1924900958, + "hash_key": 1725218169, "enum_name": "dusted", "serialized_name": "dusted", "type": "int", @@ -948,19 +948,19 @@ "max": 3 }, { - "hash_key": 778783224, + "hash_key": 972207111, "enum_name": "cracked", "serialized_name": "cracked", "type": "boolean" }, { - "hash_key": 1464394721, + "hash_key": 1657818608, "enum_name": "crafting", "serialized_name": "crafting", "type": "boolean" }, { - "hash_key": -1729588571, + "hash_key": -761435, "enum_name": "trial_spawner_state", "serialized_name": "trial_spawner_state", "type": "enum", @@ -974,7 +974,7 @@ ] }, { - "hash_key": -30697821, + "hash_key": -1947359596, "enum_name": "vault_state", "serialized_name": "vault_state", "type": "enum", @@ -986,7 +986,7 @@ ] }, { - "hash_key": 134247911, + "hash_key": 2002076952, "enum_name": "creaking_heart_state", "serialized_name": "creaking_heart_state", "type": "enum", @@ -997,13 +997,13 @@ ] }, { - "hash_key": -1591500023, + "hash_key": -1398076136, "enum_name": "ominous", "serialized_name": "ominous", "type": "boolean" }, { - "hash_key": 1943784327, + "hash_key": -333467228, "enum_name": "test_block_mode", "serialized_name": "mode", "type": "enum", @@ -1015,7 +1015,7 @@ ] }, { - "hash_key": -246020229, + "hash_key": -52596342, "enum_name": "map", "serialized_name": "map", "type": "boolean" diff --git a/pumpkin-data/build/block.rs b/pumpkin-data/build/block.rs index 708ddceca..225fcb9b3 100644 --- a/pumpkin-data/build/block.rs +++ b/pumpkin-data/build/block.rs @@ -1,10 +1,10 @@ use heck::{ToShoutySnakeCase, ToUpperCamelCase}; use proc_macro2::{Span, TokenStream}; -use pumpkin_util::math::experience::Experience; +use pumpkin_util::math::{experience::Experience, vector3::Vector3}; use quote::{ToTokens, format_ident, quote}; use serde::Deserialize; use std::collections::{HashMap, HashSet}; -use syn::{Ident, LitBool, LitInt, LitStr}; +use syn::{Ident, LitInt, LitStr}; fn const_block_name_from_block_name(block: &str) -> String { block.to_shouty_snake_case() @@ -14,9 +14,14 @@ fn property_group_name_from_derived_name(name: &str) -> String { format!("{}_properties", name).to_upper_camel_case() } +enum PropertyType { + Bool, + Enum { name: String }, +} + struct PropertyVariantMapping { original_name: String, - property_enum: String, + property_type: PropertyType, } struct PropertyCollectionData { @@ -49,6 +54,11 @@ pub struct PropertyStruct { impl ToTokens for PropertyStruct { fn to_tokens(&self, tokens: &mut TokenStream) { + if self.values == vec!["true".to_string(), "false".to_string()] { + // For boolean properties, we'll use Rust's built-in bool type + return; + } + let name = Ident::new(&self.name, Span::call_site()); let variant_count = self.values.clone().len() as u16; @@ -139,12 +149,15 @@ impl ToTokens for BlockPropertyStruct { let struct_name = property_group_name_from_derived_name(&self.data.derive_name()); let name = Ident::new(&struct_name, Span::call_site()); - let values = self.data.variant_mappings.iter().map(|entry| { + // Strukturfelder generieren + let fields = self.data.variant_mappings.iter().map(|entry| { let key = Ident::new_raw(&entry.original_name, Span::call_site()); - let value = Ident::new(&entry.property_enum, Span::call_site()); - - quote! { - #key: #value + match &entry.property_type { + PropertyType::Bool => quote! { pub #key: bool }, + PropertyType::Enum { name } => { + let value = Ident::new(name, Span::call_site()); + quote! { pub #key: #value } + } } }); @@ -155,74 +168,110 @@ impl ToTokens for BlockPropertyStruct { .map(|(_, id)| *id) .collect::>(); - let field_names: Vec<_> = self + let to_index_body = self .data .variant_mappings .iter() .rev() - .map(|entry| Ident::new_raw(&entry.original_name, Span::call_site())) - .collect(); + .map(|entry| { + let field_name = Ident::new_raw(&entry.original_name, Span::call_site()); + match &entry.property_type { + PropertyType::Bool => quote! { + index += !self.#field_name as u16 * multiplier; + multiplier *= 2; + }, + PropertyType::Enum { name } => { + let enum_ident = Ident::new(name, Span::call_site()); + quote! { + index += self.#field_name.to_index() * multiplier; + multiplier *= #enum_ident::variant_count(); + } + } + } + }) + .collect::>(); - let field_types: Vec<_> = self + let from_index_body = self .data .variant_mappings .iter() .rev() - .map(|entry| Ident::new(&entry.property_enum, Span::call_site())) - .collect(); + .map(|entry| { + let field_name = Ident::new_raw(&entry.original_name, Span::call_site()); + match &entry.property_type { + PropertyType::Bool => quote! { + #field_name: { + let value = index % 2; + index /= 2; + value == 0 + } + }, + PropertyType::Enum { name } => { + let enum_ident = Ident::new(name, Span::call_site()); + quote! { + #field_name: { + let value = index % #enum_ident::variant_count(); + index /= #enum_ident::variant_count(); + #enum_ident::from_index(value) + } + } + } + } + }) + .collect::>(); let to_props_values = self.data.variant_mappings.iter().map(|entry| { let key = &entry.original_name; - let key2 = Ident::new_raw(&entry.original_name, Span::call_site()); - - quote! { - props.push((#key.to_string(), self.#key2.to_value().to_string())); + let field_name = Ident::new_raw(&entry.original_name, Span::call_site()); + match &entry.property_type { + PropertyType::Bool => quote! { + props.push((#key.to_string(), self.#field_name.to_string())); + }, + PropertyType::Enum { name: _ } => quote! { + props.push((#key.to_string(), self.#field_name.to_value().to_string())); + }, } }); let from_props_values = self.data.variant_mappings.iter().map(|entry| { let key = &entry.original_name; - let key2 = Ident::new_raw(&entry.original_name, Span::call_site()); - let value = Ident::new(&entry.property_enum, Span::call_site()); - - quote! { - #key => block_props.#key2 = #value::from_value(&value) + let field_name = Ident::new_raw(&entry.original_name, Span::call_site()); + match &entry.property_type { + PropertyType::Bool => quote! { + #key => { + block_props.#field_name = matches!(value, "true") + } + }, + PropertyType::Enum { name } => { + let enum_ident = Ident::new(name, Span::call_site()); + quote! { + #key => { + block_props.#field_name = #enum_ident::from_value(value) + } + } + } } }); tokens.extend(quote! { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct #name { - #(pub #values),* + #(#fields),* } impl BlockProperties for #name { - // NOTE: `to_index` and `from_index` depend on Java's - // `net.minecraft.state.StateManager` logic. If these stop working, look there. - #[allow(unused_assignments)] fn to_index(&self) -> u16 { let mut index = 0; let mut multiplier = 1; - - #( - index += self.#field_names.to_index() * multiplier; - multiplier *= #field_types::variant_count(); - )* - + #(#to_index_body)* index } #[allow(unused_assignments)] fn from_index(mut index: u16) -> Self { Self { - #( - #field_names: { - let value = index % #field_types::variant_count(); - index /= #field_types::variant_count(); - #field_types::from_index(value) - } - ),* + #(#from_index_body),* } } @@ -230,7 +279,6 @@ impl ToTokens for BlockPropertyStruct { if ![#(#block_ids),*].contains(&block.id) { panic!("{} is not a valid block for {}", &block.name, #struct_name); } - block.states[0].id + self.to_index() } @@ -238,7 +286,6 @@ impl ToTokens for BlockPropertyStruct { if ![#(#block_ids),*].contains(&block.id) { panic!("{} is not a valid block for {}", &block.name, #struct_name); } - if state_id >= block.states[0].id && state_id <= block.states.last().unwrap().id { let index = state_id - block.states[0].id; Self::from_index(index) @@ -251,33 +298,27 @@ impl ToTokens for BlockPropertyStruct { if ![#(#block_ids),*].contains(&block.id) { panic!("{} is not a valid block for {}", &block.name, #struct_name); } - Self::from_state_id(block.default_state_id, block) } #[allow(clippy::vec_init_then_push)] fn to_props(&self) -> Vec<(String, String)> { let mut props = vec![]; - #(#to_props_values)* - props } - fn from_props(props: Vec<(String, String)>, block: &Block) -> Self { + fn from_props(props: Vec<(&str, &str)>, block: &Block) -> Self { if ![#(#block_ids),*].contains(&block.id) { panic!("{} is not a valid block for {}", &block.name, #struct_name); } - let mut block_props = Self::default(block); - for (key, value) in props { - match key.as_str() { + match key { #(#from_props_values),*, _ => panic!("Invalid key: {}", key), } } - block_props } } @@ -285,26 +326,26 @@ impl ToTokens for BlockPropertyStruct { } } -#[derive(Deserialize, Clone, Debug)] +#[derive(Deserialize, Clone, Copy, Debug)] pub struct CollisionShape { - pub min: [f64; 3], - pub max: [f64; 3], + pub min: Vector3, + pub max: Vector3, } impl ToTokens for CollisionShape { fn to_tokens(&self, tokens: &mut TokenStream) { - let min_x = &self.min[0]; - let min_y = &self.min[1]; - let min_z = &self.min[2]; + let min_x = &self.min.x; + let min_y = &self.min.y; + let min_z = &self.min.z; - let max_x = &self.max[0]; - let max_y = &self.max[1]; - let max_z = &self.max[2]; + let max_x = &self.max.x; + let max_y = &self.max.y; + let max_z = &self.max.z; tokens.extend(quote! { CollisionShape { - min: [#min_x, #min_y, #min_z], - max: [#max_x, #max_y, #max_z], + min: Vector3::new(#min_x, #min_y, #min_z), + max: Vector3::new(#max_x, #max_y, #max_z), } }); } @@ -313,19 +354,13 @@ impl ToTokens for CollisionShape { #[derive(Deserialize, Clone, Debug)] pub struct BlockState { pub id: u16, - pub air: bool, + pub state_flags: u8, pub luminance: u8, - pub burnable: bool, - pub tool_required: bool, pub hardness: f32, - pub sided_transparency: bool, - pub replaceable: bool, pub collision_shapes: Vec, - pub opacity: Option, - pub block_entity_type: Option, + pub opacity: Option, + pub block_entity_type: Option, // pub instrument: String, // TODO: make this an enum - pub is_solid: bool, - pub is_liquid: bool, } #[derive(Deserialize, Clone, Debug)] @@ -337,29 +372,24 @@ pub struct BlockStateRef { impl BlockState { fn to_tokens(&self) -> TokenStream { let mut tokens = TokenStream::new(); - //let id = LitInt::new(&self.id.to_string(), Span::call_site()); - let air = LitBool::new(self.air, Span::call_site()); + let id = LitInt::new(&self.id.to_string(), Span::call_site()); + let state_flags = LitInt::new(&self.state_flags.to_string(), Span::call_site()); let luminance = LitInt::new(&self.luminance.to_string(), Span::call_site()); - let burnable = LitBool::new(self.burnable, Span::call_site()); - let tool_required = LitBool::new(self.tool_required, Span::call_site()); let hardness = self.hardness; - let is_liquid = LitBool::new(self.is_liquid, Span::call_site()); - let sided_transparency = LitBool::new(self.sided_transparency, Span::call_site()); - let replaceable = LitBool::new(self.replaceable, Span::call_site()); let opacity = match self.opacity { Some(opacity) => { let opacity = LitInt::new(&opacity.to_string(), Span::call_site()); - quote! { Some(#opacity) } + quote! { #opacity } } - None => quote! { None }, + None => quote! { u8::MAX }, }; let block_entity_type = match self.block_entity_type { Some(block_entity_type) => { let block_entity_type = LitInt::new(&block_entity_type.to_string(), Span::call_site()); - quote! { Some(#block_entity_type) } + quote! { #block_entity_type } } - None => quote! { None }, + None => quote! { u16::MAX }, }; let collision_shapes = self @@ -367,22 +397,15 @@ impl BlockState { .iter() .map(|shape_id| LitInt::new(&shape_id.to_string(), Span::call_site())); - let is_solid = LitBool::new(self.is_solid, Span::call_site()); - tokens.extend(quote! { - PartialBlockState { - air: #air, + BlockState { + id: #id, + state_flags: #state_flags, luminance: #luminance, - burnable: #burnable, - tool_required: #tool_required, hardness: #hardness, - sided_transparency: #sided_transparency, - replaceable: #replaceable, collision_shapes: &[#(#collision_shapes),*], opacity: #opacity, block_entity_type: #block_entity_type, - is_liquid: #is_liquid, - is_solid: #is_solid, } }); tokens @@ -860,15 +883,10 @@ pub(crate) fn build() -> TokenStream { for state in block.states.clone() { // Check if this state is already in `unique_states` by comparing all fields except `id`. let already_exists = unique_states.iter().any(|s: &BlockState| { - s.air == state.air + s.state_flags == state.state_flags && s.luminance == state.luminance - && s.burnable == state.burnable - && s.tool_required == state.tool_required && s.hardness == state.hardness - && s.sided_transparency == state.sided_transparency - && s.replaceable == state.replaceable && s.collision_shapes == state.collision_shapes - && s.is_liquid == state.is_liquid }); if !already_exists { @@ -884,7 +902,6 @@ pub(crate) fn build() -> TokenStream { // Mapping of a collection of property hashes -> blocks that have these properties. let mut property_collection_map: HashMap, PropertyCollectionData> = HashMap::new(); // Validator that we have no `enum` collisions. - let mut enum_to_values: HashMap> = HashMap::new(); let mut optimized_blocks: Vec<(String, OptimizedBlock)> = Vec::new(); for block in blocks_assets.blocks.clone() { let optimized_block = OptimizedBlock { @@ -908,13 +925,9 @@ pub(crate) fn build() -> TokenStream { let state_idx = unique_states .iter() .position(|s| { - s.air == state.air + s.state_flags == state.state_flags && s.luminance == state.luminance - && s.burnable == state.burnable - && s.tool_required == state.tool_required && s.hardness == state.hardness - && s.sided_transparency == state.sided_transparency - && s.replaceable == state.replaceable && s.collision_shapes == state.collision_shapes }) .unwrap() as u16; @@ -936,36 +949,32 @@ pub(crate) fn build() -> TokenStream { .iter() .find(|p| p.hash_key == property) .unwrap(); - property_collection.insert(generated_property.hash_key); let property = generated_property.to_property(); - - // Get mapped property `enum` name let renamed_property = property.enum_name.to_upper_camel_case(); - let expected_values = enum_to_values - .entry(renamed_property.clone()) - .or_insert_with(|| property.values.clone()); - - if expected_values != &property.values { - panic!( - "Enum overlap for '{}' ({:?} vs {:?})", - property.serialized_name, &property.values, expected_values - ); + let property_type = if property.values == vec!["true".to_string(), "false".to_string()] + { + PropertyType::Bool + } else { + PropertyType::Enum { + name: renamed_property.clone(), + } }; + if let PropertyType::Enum { name } = &property_type { + let _ = property_enums + .entry(name.clone()) + .or_insert_with(|| PropertyStruct { + name: name.clone(), + values: property.values.clone(), + }); + } + property_mapping.push(PropertyVariantMapping { original_name: property.serialized_name.clone(), - property_enum: renamed_property.clone(), + property_type, }); - - // If this property doesn't have an `enum` yet, make one. - let _ = property_enums - .entry(renamed_property.clone()) - .or_insert_with(|| PropertyStruct { - name: renamed_property, - values: property.values, - }); } // The Minecraft Java state manager deterministically produces an index given a set of properties. We must use @@ -1060,72 +1069,11 @@ pub(crate) fn build() -> TokenStream { } quote! { - use crate::tag::{Tagable, RegistryKey}; + use crate::{BlockState, BlockStateRef, Block, CollisionShape}; use pumpkin_util::math::int_provider::{UniformIntProvider, IntProvider, NormalIntProvider}; use pumpkin_util::loot_table::*; use pumpkin_util::math::experience::Experience; - - #[derive(Clone, Debug)] - pub struct PartialBlockState { - pub air: bool, - pub luminance: u8, - pub burnable: bool, - pub tool_required: bool, - pub hardness: f32, - pub sided_transparency: bool, - pub replaceable: bool, - pub collision_shapes: &'static [u16], - pub opacity: Option, - pub block_entity_type: Option, - pub is_liquid: bool, - pub is_solid: bool, - } - - #[derive(Clone, Debug)] - pub struct BlockState { - pub id: u16, - pub air: bool, - pub luminance: u8, - pub burnable: bool, - pub tool_required: bool, - pub hardness: f32, - pub sided_transparency: bool, - pub replaceable: bool, - pub collision_shapes: &'static [u16], - pub opacity: Option, - pub block_entity_type: Option, - pub is_liquid: bool, - pub is_solid: bool, - } - - #[derive(Clone, Debug)] - pub struct BlockStateRef { - pub id: u16, - pub state_idx: u16, - } - - #[derive(Clone, Debug)] - pub struct Block { - pub id: u16, - pub name: &'static str, - pub translation_key: &'static str, - pub hardness: f32, - pub blast_resistance: f32, - pub slipperiness: f32, - pub velocity_multiplier: f32, - pub jump_velocity_multiplier: f32, - pub item_id: u16, - pub default_state_id: u16, - pub states: &'static [BlockStateRef], - pub loot_table: Option, - pub experience: Option, - } - - impl PartialEq for Block { - fn eq(&self, other: &Self) -> bool { - self.id == other.id - } - } + use pumpkin_util::math::vector3::Vector3; #[derive(Clone, Copy, Debug)] pub struct BlockProperty { @@ -1133,12 +1081,6 @@ pub(crate) fn build() -> TokenStream { pub values: &'static [&'static str], } - #[derive(Clone, Copy, Debug)] - pub struct CollisionShape { - pub min: [f64; 3], - pub max: [f64; 3], - } - pub trait BlockProperties where Self: 'static { // Convert properties to an index (`0` to `N-1`). fn to_index(&self) -> u16; @@ -1156,7 +1098,7 @@ pub(crate) fn build() -> TokenStream { fn to_props(&self) -> Vec<(String, String)>; // Convert properties to a block state, and add them onto the default state. - fn from_props(props: Vec<(String, String)>, block: &Block) -> Self where Self: Sized; + fn from_props(props: Vec<(&str, &str)>, block: &Block) -> Self where Self: Sized; } pub trait EnumVariants { @@ -1173,7 +1115,7 @@ pub(crate) fn build() -> TokenStream { #(#shapes),* ]; - pub static BLOCK_STATES: &[PartialBlockState] = &[ + pub static BLOCK_STATES: &[BlockState] = &[ #(#unique_states),* ]; @@ -1228,7 +1170,7 @@ pub(crate) fn build() -> TokenStream { } #[doc = r" Get the properties of the block."] - pub fn from_properties(&self, props: Vec<(String, String)>) -> Option> { + pub fn from_properties(&self, props: Vec<(&str, &str)>) -> Option> { match self.id { #block_properties_from_props_and_name _ => None @@ -1242,45 +1184,9 @@ pub(crate) fn build() -> TokenStream { impl BlockStateRef { pub fn get_state(&self) -> BlockState { - let partial_state = &BLOCK_STATES[self.state_idx as usize]; - BlockState { - id: self.id, - air: partial_state.air, - luminance: partial_state.luminance, - burnable: partial_state.burnable, - tool_required: partial_state.tool_required, - hardness: partial_state.hardness, - sided_transparency: partial_state.sided_transparency, - replaceable: partial_state.replaceable, - collision_shapes: partial_state.collision_shapes, - opacity: partial_state.opacity, - block_entity_type: partial_state.block_entity_type, - is_liquid: partial_state.is_liquid, - is_solid: partial_state.is_solid, - } - } - } - - impl Tagable for Block { - #[inline] - fn tag_key() -> RegistryKey { - RegistryKey::Block - } - - #[inline] - fn registry_key(&self) -> &str { - self.name - } - } - - impl HorizontalFacing { - pub fn opposite(&self) -> Self { - match self { - HorizontalFacing::North => HorizontalFacing::South, - HorizontalFacing::South => HorizontalFacing::North, - HorizontalFacing::East => HorizontalFacing::West, - HorizontalFacing::West => HorizontalFacing::East - } + let mut state = BLOCK_STATES[self.state_idx as usize].clone(); + state.id = self.id; + state } } @@ -1297,26 +1203,13 @@ pub(crate) fn build() -> TokenStream { } } - impl Boolean { - pub fn flip(&self) -> Self { + impl HorizontalFacing { + pub fn opposite(&self) -> Self { match self { - Boolean::True => Boolean::False, - Boolean::False => Boolean::True, - } - } - - pub fn to_bool(&self) -> bool { - match self { - Boolean::True => true, - Boolean::False => false, - } - } - - pub fn from_bool(value: bool) -> Self { - if value { - Boolean::True - } else { - Boolean::False + HorizontalFacing::North => HorizontalFacing::South, + HorizontalFacing::South => HorizontalFacing::North, + HorizontalFacing::East => HorizontalFacing::West, + HorizontalFacing::West => HorizontalFacing::East } } } diff --git a/pumpkin-data/src/block_state.rs b/pumpkin-data/src/block_state.rs new file mode 100644 index 000000000..65a54cac9 --- /dev/null +++ b/pumpkin-data/src/block_state.rs @@ -0,0 +1,63 @@ +#[derive(Clone, Debug)] +pub struct BlockState { + pub id: u16, + pub state_flags: u8, + pub luminance: u8, + pub hardness: f32, + pub collision_shapes: &'static [u16], + //u8::MAX is used as None + pub opacity: u8, + //u16::MAX is used as None + pub block_entity_type: u16, +} + +// Add your methods here +impl BlockState { + pub const fn is_air(&self) -> bool { + self.state_flags & IS_AIR != 0 + } + + pub const fn burnable(&self) -> bool { + self.state_flags & BURNABLE != 0 + } + + pub const fn tool_required(&self) -> bool { + self.state_flags & TOOL_REQUIRED != 0 + } + + pub const fn sided_transparency(&self) -> bool { + self.state_flags & SIDED_TRANSPARENCY != 0 + } + + pub const fn replaceable(&self) -> bool { + self.state_flags & REPLACEABLE != 0 + } + + pub const fn is_liquid(&self) -> bool { + self.state_flags & IS_LIQUID != 0 + } + + pub const fn is_solid(&self) -> bool { + self.state_flags & IS_SOLID != 0 + } + + pub const fn is_full_cube(&self) -> bool { + self.state_flags & IS_FULL_CUBE != 0 + } +} + +#[derive(Clone, Debug)] +pub struct BlockStateRef { + pub id: u16, + pub state_idx: u16, +} + +//This is the Layout of state_props in the right order +const IS_AIR: u8 = 0b00000001; +const BURNABLE: u8 = 0b00000010; +const TOOL_REQUIRED: u8 = 0b00000100; +const SIDED_TRANSPARENCY: u8 = 0b00001000; +const REPLACEABLE: u8 = 0b00010000; +const IS_LIQUID: u8 = 0b00100000; +const IS_SOLID: u8 = 0b01000000; +const IS_FULL_CUBE: u8 = 0b10000000; diff --git a/pumpkin-data/src/blocks.rs b/pumpkin-data/src/blocks.rs new file mode 100644 index 000000000..f4650ed71 --- /dev/null +++ b/pumpkin-data/src/blocks.rs @@ -0,0 +1,40 @@ +use crate::{ + BlockStateRef, + tag::{RegistryKey, Tagable}, +}; +use pumpkin_util::{loot_table::LootTable, math::experience::Experience}; + +#[derive(Clone, Debug)] +pub struct Block { + pub id: u16, + pub name: &'static str, + pub translation_key: &'static str, + pub hardness: f32, + pub blast_resistance: f32, + pub slipperiness: f32, + pub velocity_multiplier: f32, + pub jump_velocity_multiplier: f32, + pub item_id: u16, + pub default_state_id: u16, + pub states: &'static [BlockStateRef], + pub loot_table: Option, + pub experience: Option, +} + +impl PartialEq for Block { + fn eq(&self, other: &Self) -> bool { + self.id == other.id + } +} + +impl Tagable for Block { + #[inline] + fn tag_key() -> RegistryKey { + RegistryKey::Block + } + + #[inline] + fn registry_key(&self) -> &str { + self.name + } +} diff --git a/pumpkin-data/src/collision_shape.rs b/pumpkin-data/src/collision_shape.rs new file mode 100644 index 000000000..613105de6 --- /dev/null +++ b/pumpkin-data/src/collision_shape.rs @@ -0,0 +1,34 @@ +use pumpkin_util::math::{boundingbox::BoundingBox, position::BlockPos, vector3::Vector3}; + +#[derive(Clone, Copy, Debug)] +pub struct CollisionShape { + pub min: Vector3, + pub max: Vector3, +} + +impl CollisionShape { + pub fn is_empty() -> bool { + unimplemented!() + } + + pub fn intersects(&self, other: &BoundingBox) -> bool { + self.min.x < other.max.x + && self.max.x > other.min.x + && self.min.y < other.max.y + && self.max.y > other.min.y + && self.min.z < other.max.z + && self.max.z > other.min.z + } + + pub fn at_pos(&self, pos: BlockPos) -> Self { + let vec3 = Vector3 { + x: pos.0.x as f64, + y: pos.0.y as f64, + z: pos.0.z as f64, + }; + Self { + min: self.min + vec3, + max: self.max + vec3, + } + } +} diff --git a/pumpkin-data/src/lib.rs b/pumpkin-data/src/lib.rs index a1dcf9b7f..b3c6baab4 100644 --- a/pumpkin-data/src/lib.rs +++ b/pumpkin-data/src/lib.rs @@ -56,7 +56,7 @@ pub mod fluid { include!(concat!(env!("OUT_DIR"), "/fluid.rs")); } -pub mod block { +pub mod block_properties { include!(concat!(env!("OUT_DIR"), "/block.rs")); pub fn get_block(registry_id: &str) -> Option { @@ -105,7 +105,7 @@ pub mod block { } pub fn blocks_movement(block_state: &BlockState) -> bool { - if block_state.is_solid { + if block_state.is_solid() { if let Some(block) = get_block_by_state_id(block_state.id) { return block != Block::COBWEB && block != Block::BAMBOO_SAPLING; } @@ -121,3 +121,12 @@ pub mod tag { pub mod noise_router { include!(concat!(env!("OUT_DIR"), "/noise_router.rs")); } + +mod block_state; +mod blocks; +mod collision_shape; + +pub use block_state::BlockState; +pub use block_state::BlockStateRef; +pub use blocks::Block; +pub use collision_shape::CollisionShape; diff --git a/pumpkin-inventory/src/open_container.rs b/pumpkin-inventory/src/open_container.rs index 14ab60863..67ca91136 100644 --- a/pumpkin-inventory/src/open_container.rs +++ b/pumpkin-inventory/src/open_container.rs @@ -1,5 +1,5 @@ use crate::Container; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::screen::WindowType; use pumpkin_util::math::position::BlockPos; use pumpkin_world::item::ItemStack; diff --git a/pumpkin-macros/src/block_state.rs b/pumpkin-macros/src/block_state.rs index ee37400a9..e86447dae 100644 --- a/pumpkin-macros/src/block_state.rs +++ b/pumpkin-macros/src/block_state.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::Block; +use pumpkin_data::Block; use quote::quote; diff --git a/pumpkin-protocol/src/client/config/update_tags.rs b/pumpkin-protocol/src/client/config/update_tags.rs index 4bb5a55fa..fd34cb41b 100644 --- a/pumpkin-protocol/src/client/config/update_tags.rs +++ b/pumpkin-protocol/src/client/config/update_tags.rs @@ -1,7 +1,7 @@ use std::io::Write; use pumpkin_data::{ - block::get_block, + block_properties::get_block, fluid::Fluid, packet::clientbound::CONFIG_UPDATE_TAGS, tag::{RegistryKey, get_registry_key_tags}, diff --git a/pumpkin-util/src/math/mod.rs b/pumpkin-util/src/math/mod.rs index e76445d3a..e36db52f7 100644 --- a/pumpkin-util/src/math/mod.rs +++ b/pumpkin-util/src/math/mod.rs @@ -8,7 +8,6 @@ pub mod position; pub mod vector2; pub mod vector3; pub mod vertical_surface_type; -pub mod voxel_shape; pub fn wrap_degrees(degrees: f32) -> f32 { let mut var1 = degrees % 360.0; diff --git a/pumpkin-util/src/math/voxel_shape.rs b/pumpkin-util/src/math/voxel_shape.rs deleted file mode 100644 index ecf5a88d2..000000000 --- a/pumpkin-util/src/math/voxel_shape.rs +++ /dev/null @@ -1,9 +0,0 @@ -pub struct VoxelShape { - // TODO -} - -impl VoxelShape { - pub fn is_empty() -> bool { - unimplemented!() - } -} diff --git a/pumpkin-world/src/block/entities/mod.rs b/pumpkin-world/src/block/entities/mod.rs index 3081ac211..72de669d5 100644 --- a/pumpkin-world/src/block/entities/mod.rs +++ b/pumpkin-world/src/block/entities/mod.rs @@ -28,7 +28,7 @@ pub trait BlockEntity: Send + Sync { self.write_nbt(nbt); } fn get_id(&self) -> u32 { - pumpkin_data::block::BLOCK_ENTITY_TYPES + pumpkin_data::block_properties::BLOCK_ENTITY_TYPES .iter() .position(|block_entity_name| { *block_entity_name == self.identifier().split(":").last().unwrap() diff --git a/pumpkin-world/src/block/mod.rs b/pumpkin-world/src/block/mod.rs index 564fcf0a8..9884164e3 100644 --- a/pumpkin-world/src/block/mod.rs +++ b/pumpkin-world/src/block/mod.rs @@ -2,7 +2,7 @@ pub mod entities; pub mod state; use num_derive::FromPrimitive; -use pumpkin_data::block::{Axis, Facing, HorizontalFacing}; +use pumpkin_data::block_properties::{Axis, Facing, HorizontalFacing}; use pumpkin_util::math::vector3::Vector3; use serde::Deserialize; @@ -255,7 +255,7 @@ impl FacingExt for Facing { #[cfg(test)] mod test { - use pumpkin_data::block::Block; + use pumpkin_data::Block; use crate::chunk::palette::BLOCK_NETWORK_MAX_BITS; diff --git a/pumpkin-world/src/block/state.rs b/pumpkin-world/src/block/state.rs index ec70e7ebf..31ad32bd6 100644 --- a/pumpkin-world/src/block/state.rs +++ b/pumpkin-world/src/block/state.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::{get_block, get_block_by_state_id, get_state_by_state_id}; +use pumpkin_data::block_properties::{get_block, get_block_by_state_id, get_state_by_state_id}; use crate::{BlockStateId, chunk::format::PaletteBlockEntry}; @@ -31,10 +31,10 @@ impl RawBlockState { if let Some(block) = block { let mut state_id = block.default_state_id; - if let Some(properties) = palette.properties.clone() { - let mut properties_vec = Vec::new(); + if let Some(properties) = &palette.properties { + let mut properties_vec: Vec<(&str, &str)> = Vec::with_capacity(properties.len()); for (key, value) in properties { - properties_vec.push((key.clone(), value.clone())); + properties_vec.push((key, value)); } let block_properties = block.from_properties(properties_vec).unwrap(); state_id = block_properties.to_state_id(&block); @@ -50,11 +50,11 @@ impl RawBlockState { self.state_id } - pub fn to_state(&self) -> pumpkin_data::block::BlockState { + pub fn to_state(&self) -> pumpkin_data::BlockState { get_state_by_state_id(self.state_id).unwrap() } - pub fn to_block(&self) -> pumpkin_data::block::Block { + pub fn to_block(&self) -> pumpkin_data::Block { get_block_by_state_id(self.state_id).unwrap() } } diff --git a/pumpkin-world/src/chunk/format/anvil.rs b/pumpkin-world/src/chunk/format/anvil.rs index 092aee16e..1f6397cea 100644 --- a/pumpkin-world/src/chunk/format/anvil.rs +++ b/pumpkin-world/src/chunk/format/anvil.rs @@ -3,7 +3,7 @@ use bytes::*; use flate2::read::{GzDecoder, GzEncoder, ZlibDecoder, ZlibEncoder}; use itertools::Itertools; use pumpkin_config::advanced_config; -use pumpkin_data::{block::Block, chunk::ChunkStatus}; +use pumpkin_data::{Block, chunk::ChunkStatus}; use pumpkin_nbt::{compound::NbtCompound, serializer::to_bytes}; use pumpkin_util::math::vector2::Vector2; use std::{ diff --git a/pumpkin-world/src/chunk/format/mod.rs b/pumpkin-world/src/chunk/format/mod.rs index f0908d85b..c58341b8a 100644 --- a/pumpkin-world/src/chunk/format/mod.rs +++ b/pumpkin-world/src/chunk/format/mod.rs @@ -1,6 +1,6 @@ use std::collections::HashMap; -use pumpkin_data::{block::Block, chunk::ChunkStatus}; +use pumpkin_data::{Block, chunk::ChunkStatus}; use pumpkin_nbt::{compound::NbtCompound, from_bytes, nbt_long_array}; use pumpkin_util::math::{position::BlockPos, vector2::Vector2}; diff --git a/pumpkin-world/src/chunk/palette.rs b/pumpkin-world/src/chunk/palette.rs index 23b2fd0d0..f0c1a0726 100644 --- a/pumpkin-world/src/chunk/palette.rs +++ b/pumpkin-world/src/chunk/palette.rs @@ -4,10 +4,7 @@ use std::{ hash::Hash, }; -use pumpkin_data::{ - block::{Block, get_state_by_state_id}, - chunk::Biome, -}; +use pumpkin_data::{Block, block_properties::get_state_by_state_id, chunk::Biome}; use pumpkin_util::encompassing_bits; use crate::block::RawBlockState; @@ -379,7 +376,7 @@ impl BlockPalette { pub fn non_air_block_count(&self) -> u16 { match self { Self::Homogeneous(registry_id) => { - if !get_state_by_state_id(*registry_id).unwrap().air { + if !get_state_by_state_id(*registry_id).unwrap().is_air() { Self::VOLUME as u16 } else { 0 @@ -389,7 +386,7 @@ impl BlockPalette { .counts .iter() .map(|(registry_id, count)| { - if !get_state_by_state_id(*registry_id).unwrap().air { + if !get_state_by_state_id(*registry_id).unwrap().is_air() { *count } else { 0 diff --git a/pumpkin-world/src/generation/aquifer_sampler.rs b/pumpkin-world/src/generation/aquifer_sampler.rs index 429b92e7e..41c77cdcb 100644 --- a/pumpkin-world/src/generation/aquifer_sampler.rs +++ b/pumpkin-world/src/generation/aquifer_sampler.rs @@ -287,7 +287,7 @@ impl WorldAquiferSampler { let bl3 = j > o; if bl3 || bl2 { let fluid_level = self.fluid_level.get_fluid_level(x, o, z); - if !fluid_level.get_block_state(o).to_state().air { + if !fluid_level.get_block_state(o).to_state().is_air() { if bl2 { bl = true; } diff --git a/pumpkin-world/src/generation/proto_chunk.rs b/pumpkin-world/src/generation/proto_chunk.rs index dc615a40c..e7d5b70f9 100644 --- a/pumpkin-world/src/generation/proto_chunk.rs +++ b/pumpkin-world/src/generation/proto_chunk.rs @@ -1,5 +1,6 @@ use pumpkin_data::{ - block::{BlockState, blocks_movement, get_block_by_state_id}, + BlockState, + block_properties::{blocks_movement, get_block_by_state_id}, chunk::Biome, tag::Tagable, }; @@ -325,7 +326,7 @@ impl<'a> ProtoChunk<'a> { } pub fn set_block_state(&mut self, local_pos: &Vector3, block_state: BlockState) { - if !block_state.air { + if !block_state.is_air() { self.maybe_update_surface_height_map(local_pos); } @@ -333,7 +334,7 @@ impl<'a> ProtoChunk<'a> { self.maybe_update_ocean_floor_height_map(local_pos); } - if blocks_movement(&block_state) || block_state.is_liquid { + if blocks_movement(&block_state) || block_state.is_liquid() { self.maybe_update_motion_blocking_height_map(local_pos); if let Some(block) = get_block_by_state_id(block_state.id) { if !block.is_tagged_with("minecraft:leaves").unwrap() { @@ -564,12 +565,12 @@ impl<'a> ProtoChunk<'a> { for y in (min_y as i32..top_block).rev() { let pos = Vector3::new(x, y, z); let state = self.get_block_state(&pos).to_state(); - if state.air { + if state.is_air() { stone_depth_above = 0; fluid_height = i32::MIN; continue; } - if state.is_liquid { + if state.is_liquid() { if fluid_height == i32::MIN { fluid_height = y + 1; } diff --git a/pumpkin-world/src/generation/surface/terrain.rs b/pumpkin-world/src/generation/surface/terrain.rs index e2c8adce3..cff58c4e9 100644 --- a/pumpkin-world/src/generation/surface/terrain.rs +++ b/pumpkin-world/src/generation/surface/terrain.rs @@ -168,7 +168,7 @@ impl SurfaceTerrainBuilder { for y in (chunk.bottom_y() as i32..=elevation_y).rev() { let pos = Vector3::new(global_x, y, global_z); let block_state = chunk.get_block_state(&pos).to_state(); - if !block_state.air { + if !block_state.is_air() { break; } @@ -239,7 +239,7 @@ impl SurfaceTerrainBuilder { for y in (estimated_surface_y..=top_y).rev() { let pos = Vector3::new(x, y, z); let block_state = chunk.get_block_state(&pos); - if (block_state.to_state().air && y < top_block && rand.next_f64() > 0.01) + if (block_state.to_state().is_air() && y < top_block && rand.next_f64() > 0.01) || (block_state.to_block() == WATER_BLOCK.to_block() && y > bottom_block && y < sea_level diff --git a/pumpkin/src/block/blocks/cactus.rs b/pumpkin/src/block/blocks/cactus.rs index 00ce1aa90..06ad01429 100644 --- a/pumpkin/src/block/blocks/cactus.rs +++ b/pumpkin/src/block/blocks/cactus.rs @@ -1,10 +1,11 @@ use std::sync::Arc; use async_trait::async_trait; -use pumpkin_data::block::{ - Block, BlockProperties, CactusLikeProperties, EnumVariants, Integer0To15, -}; use pumpkin_data::tag::Tagable; +use pumpkin_data::{ + Block, + block_properties::{BlockProperties, CactusLikeProperties, EnumVariants, Integer0To15}, +}; use pumpkin_macros::pumpkin_block; use pumpkin_world::BlockStateId; use pumpkin_world::block::BlockDirection; @@ -27,7 +28,7 @@ impl PumpkinBlock for CactusBlock { } async fn random_tick(&self, block: &Block, world: &Arc, pos: &BlockPos) { - if world.get_block_state(&pos.up()).await.unwrap().air { + if world.get_block_state(&pos.up()).await.unwrap().is_air() { let state_id = world .get_block_state(pos) .await @@ -81,13 +82,13 @@ impl PumpkinBlock for CactusBlock { .get_block_and_block_state(&pos.offset(direction.to_offset())) .await .unwrap(); - if state.is_solid || block == Block::LAVA { + if state.is_solid() || block == Block::LAVA { return false; } } let block = world.get_block(&pos.down()).await.unwrap(); // TODO: use tags (block == Block::CACTUS || block.is_tagged_with("minecraft:sand").unwrap()) - && !world.get_block_state(&pos.up()).await.unwrap().is_liquid + && !world.get_block_state(&pos.up()).await.unwrap().is_liquid() } } diff --git a/pumpkin/src/block/blocks/chest.rs b/pumpkin/src/block/blocks/chest.rs index 1ee40a855..a9f581d23 100644 --- a/pumpkin/src/block/blocks/chest.rs +++ b/pumpkin/src/block/blocks/chest.rs @@ -1,8 +1,8 @@ use std::sync::Arc; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockState, get_block}; use pumpkin_data::item::Item; +use pumpkin_data::{Block, BlockState, block_properties::get_block}; use pumpkin_data::{ screen::WindowType, sound::{Sound, SoundCategory}, diff --git a/pumpkin/src/block/blocks/crafting_table.rs b/pumpkin/src/block/blocks/crafting_table.rs index f9f6103ea..93b1d889e 100644 --- a/pumpkin/src/block/blocks/crafting_table.rs +++ b/pumpkin/src/block/blocks/crafting_table.rs @@ -5,9 +5,9 @@ use crate::entity::player::Player; use crate::server::Server; use crate::{block::pumpkin_block::PumpkinBlock, world::World}; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockState}; use pumpkin_data::item::Item; use pumpkin_data::screen::WindowType; +use pumpkin_data::{Block, BlockState}; use pumpkin_inventory::{CraftingTable, OpenContainer}; use pumpkin_macros::pumpkin_block; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/dirt_path.rs b/pumpkin/src/block/blocks/dirt_path.rs index f04fa04f1..911cd1bb9 100644 --- a/pumpkin/src/block/blocks/dirt_path.rs +++ b/pumpkin/src/block/blocks/dirt_path.rs @@ -6,7 +6,7 @@ use crate::server::Server; use crate::world::BlockFlags; use crate::world::World; use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; @@ -63,6 +63,6 @@ impl PumpkinBlock for DirtPathBlock { async fn can_place_at(&self, world: &World, pos: &BlockPos) -> bool { let state = world.get_block_state(&pos.up()).await.unwrap(); - !state.is_solid // TODO: add fence gata block + !state.is_solid() // TODO: add fence gata block } } diff --git a/pumpkin/src/block/blocks/doors.rs b/pumpkin/src/block/blocks/doors.rs index ff7212013..f6e13ef04 100644 --- a/pumpkin/src/block/blocks/doors.rs +++ b/pumpkin/src/block/blocks/doors.rs @@ -1,17 +1,22 @@ use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockProperties; -use pumpkin_data::block::BlockState; -use pumpkin_data::block::DoorHinge; -use pumpkin_data::block::DoubleBlockHalf; +use pumpkin_data::Block; +use pumpkin_data::block_properties::Axis; +use pumpkin_data::block_properties::BlockProperties; +use pumpkin_data::block_properties::DoorHinge; +use pumpkin_data::block_properties::DoubleBlockHalf; +use pumpkin_data::block_properties::HorizontalFacing; +use pumpkin_data::sound::Sound; +use pumpkin_data::sound::SoundCategory; use pumpkin_data::tag::RegistryKey; +use pumpkin_data::tag::Tagable; use pumpkin_data::tag::get_tag_values; -use pumpkin_util::GameMode; use pumpkin_util::math::position::BlockPos; use pumpkin_world::BlockStateId; use pumpkin_world::block::BlockDirection; +use pumpkin_world::block::HorizontalFacingExt; use std::sync::Arc; +use crate::block::blocks::redstone::block_receives_redstone_power; use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; use crate::block::registry::BlockActionResult; use crate::entity::player::Player; @@ -22,12 +27,12 @@ use pumpkin_protocol::server::play::SUseItemOn; use crate::server::Server; use crate::world::World; -type DoorProperties = pumpkin_data::block::OakDoorLikeProperties; +type DoorProperties = pumpkin_data::block_properties::OakDoorLikeProperties; async fn toggle_door(world: &Arc, block_pos: &BlockPos) { let (block, block_state) = world.get_block_and_block_state(block_pos).await.unwrap(); let mut door_props = DoorProperties::from_state_id(block_state.id, &block); - door_props.open = door_props.open.flip(); + door_props.open = !door_props.open; let other_half = match door_props.half { DoubleBlockHalf::Upper => BlockDirection::Down, @@ -55,14 +60,95 @@ async fn toggle_door(world: &Arc, block_pos: &BlockPos) { .await; } -fn can_open_door(block: &Block, player: &Player) -> bool { - if block.id == Block::IRON_DOOR.id && player.gamemode.load() != GameMode::Creative { +fn can_open_door(block: &Block) -> bool { + if block.id == Block::IRON_DOOR.id { return false; } true } +// Todo: The sounds should be from BlockSetType +fn get_sound(block: &Block, open: bool) -> Sound { + if open { + if block.is_tagged_with("minecraft:wooden_doors").unwrap() { + Sound::BlockWoodenDoorOpen + } else if block.id == Block::IRON_DOOR.id { + Sound::BlockIronDoorOpen + } else { + Sound::BlockCopperDoorOpen + } + } else if block.is_tagged_with("minecraft:wooden_doors").unwrap() { + Sound::BlockWoodenDoorClose + } else if block.id == Block::IRON_DOOR.id { + Sound::BlockIronDoorClose + } else { + Sound::BlockCopperDoorClose + } +} + +#[allow(clippy::pedantic)] +#[inline] +async fn get_hinge( + world: &World, + block: &Block, + pos: &BlockPos, + use_item: &SUseItemOn, + facing: HorizontalFacing, +) -> DoorHinge { + let top_pos = pos.up(); + let left_dir = facing.rotate_counter_clockwise(); + let left_pos = pos.offset(left_dir.to_block_direction().to_offset()); + let left_state = world.get_block_state(&left_pos).await.unwrap(); + let top_facing = top_pos.offset(facing.to_block_direction().to_offset()); + let top_state = world.get_block_state(&top_facing).await.unwrap(); + let right_dir = facing.rotate_clockwise(); + let right_pos = pos.offset(right_dir.to_block_direction().to_offset()); + let right_state = world.get_block_state(&right_pos).await.unwrap(); + let top_right = top_pos.offset(facing.to_block_direction().to_offset()); + let top_right_state = world.get_block_state(&top_right).await.unwrap(); + + let has_left_door = world + .get_block(&left_pos) + .await + .unwrap() + .is_tagged_with("minecraft:doors") + .unwrap() + && DoorProperties::from_state_id(left_state.id, block).half == DoubleBlockHalf::Lower; + + let has_right_door = world + .get_block(&right_pos) + .await + .unwrap() + .is_tagged_with("minecraft:doors") + .unwrap() + && DoorProperties::from_state_id(right_state.id, block).half == DoubleBlockHalf::Lower; + + let score = -(left_state.is_full_cube() as i32) - (top_state.is_full_cube() as i32) + + right_state.is_full_cube() as i32 + + top_right_state.is_full_cube() as i32; + + if (!has_left_door || has_right_door) && score <= 0 { + if (!has_right_door || has_left_door) && score >= 0 { + let offset = facing.to_block_direction().to_offset(); + let hit = use_item.cursor_pos; + if (offset.x >= 0 || hit.z > 0.5) + && (offset.x <= 0 || hit.z < 0.5) + && (offset.z >= 0 || hit.x < 0.5) + && (offset.z <= 0 || hit.x > 0.5) + { + DoorHinge::Left + } else { + DoorHinge::Right + } + } else { + DoorHinge::Left + } + } else { + DoorHinge::Right + } +} + pub struct DoorBlock; impl BlockMetadata for DoorBlock { fn namespace(&self) -> &'static str { @@ -79,18 +165,26 @@ impl PumpkinBlock for DoorBlock { async fn on_place( &self, _server: &Server, - _world: &World, + world: &World, block: &Block, _face: &BlockDirection, - _block_pos: &BlockPos, - _use_item_on: &SUseItemOn, + block_pos: &BlockPos, + use_item_on: &SUseItemOn, player: &Player, _other: bool, ) -> BlockStateId { + let powered = block_receives_redstone_power(world, block_pos).await + || block_receives_redstone_power(world, &block_pos.up()).await; + + let direction = player.living_entity.entity.get_horizontal_facing(); + let hinge = get_hinge(world, block, block_pos, use_item_on, direction).await; + let mut door_props = DoorProperties::default(block); door_props.half = DoubleBlockHalf::Lower; - door_props.facing = player.living_entity.entity.get_horizontal_facing(); - door_props.hinge = DoorHinge::Left; + door_props.facing = direction; + door_props.hinge = hinge; + door_props.powered = powered; + door_props.open = powered; door_props.to_state_id(block) } @@ -99,7 +193,11 @@ impl PumpkinBlock for DoorBlock { if world .get_block_state(&block_pos.offset(BlockDirection::Up.to_offset())) .await - .is_ok_and(|state| state.replaceable) + .is_ok_and(|state| state.replaceable()) + && world + .get_block_state(&block_pos.offset(BlockDirection::Down.to_offset())) + .await + .is_ok_and(|state| state.is_solid() && state.is_full_cube()) { return true; } @@ -127,43 +225,16 @@ impl PumpkinBlock for DoorBlock { .await; } - async fn broken( - &self, - block: &Block, - _player: &Player, - location: BlockPos, - _server: &Server, - world: Arc, - state: BlockState, - ) { - let door_props = DoorProperties::from_state_id(state.id, block); - - let other_half = match door_props.half { - DoubleBlockHalf::Upper => BlockDirection::Down, - DoubleBlockHalf::Lower => BlockDirection::Up, - }; - - let other_pos = location.offset(other_half.to_offset()); - - if let Ok(other_block) = world.get_block(&other_pos).await { - if other_block.id == block.id { - world - .break_block(&other_pos, None, BlockFlags::NOTIFY_NEIGHBORS) - .await; - } - } - } - async fn use_with_item( &self, block: &Block, - player: &Player, + _player: &Player, location: BlockPos, _item: &Item, _server: &Server, world: &Arc, ) -> BlockActionResult { - if !can_open_door(block, player) { + if !can_open_door(block) { return BlockActionResult::Continue; } @@ -175,15 +246,99 @@ impl PumpkinBlock for DoorBlock { async fn normal_use( &self, block: &Block, - player: &Player, + _player: &Player, location: BlockPos, _server: &Server, world: &Arc, ) { - if !can_open_door(block, player) { - return; + if can_open_door(block) { + toggle_door(world, &location).await; } + } - toggle_door(world, &location).await; + async fn on_neighbor_update( + &self, + world: &Arc, + block: &Block, + pos: &BlockPos, + _source_block: &Block, + _notify: bool, + ) { + let block_state = world.get_block_state(pos).await.unwrap(); + let mut door_props = DoorProperties::from_state_id(block_state.id, block); + + let other_half = match door_props.half { + DoubleBlockHalf::Upper => BlockDirection::Down, + DoubleBlockHalf::Lower => BlockDirection::Up, + }; + let other_pos = pos.offset(other_half.to_offset()); + let (other_block, other_state_id) = + world.get_block_and_block_state(&other_pos).await.unwrap(); + + let powered = block_receives_redstone_power(world, pos).await + || block_receives_redstone_power(world, &other_pos).await; + + if block.id == other_block.id && powered != door_props.powered { + let mut other_door_props = + DoorProperties::from_state_id(other_state_id.id, &other_block); + door_props.powered = !door_props.powered; + other_door_props.powered = door_props.powered; + + if powered != door_props.open { + door_props.open = door_props.powered; + other_door_props.open = other_door_props.powered; + + world + .play_block_sound(get_sound(block, powered), SoundCategory::Blocks, *pos) + .await; + } + + world + .set_block_state( + pos, + door_props.to_state_id(block), + BlockFlags::NOTIFY_LISTENERS, + ) + .await; + world + .set_block_state( + &other_pos, + other_door_props.to_state_id(&other_block), + BlockFlags::NOTIFY_LISTENERS, + ) + .await; + } + } + + async fn get_state_for_neighbor_update( + &self, + world: &World, + block: &Block, + state: u16, + block_pos: &BlockPos, + direction: &BlockDirection, + _neighbor_pos: &BlockPos, + neighbor_state: u16, + ) -> u16 { + let lv = DoorProperties::from_state_id(state, block).half; + if direction.to_axis() != Axis::Y + || (lv == DoubleBlockHalf::Lower) != (direction == &BlockDirection::Up) + { + if lv == DoubleBlockHalf::Lower + && direction == &BlockDirection::Down + && !self.can_place_at(world, block_pos).await + { + return 0; + } + } else if Block::from_state_id(neighbor_state).unwrap().id == block.id + && DoorProperties::from_state_id(neighbor_state, block).half != lv + { + let mut new_state = DoorProperties::from_state_id(neighbor_state, block); + new_state.half = lv; + return new_state.to_state_id(block); + } else { + return 0; + } + state } } diff --git a/pumpkin/src/block/blocks/farmland.rs b/pumpkin/src/block/blocks/farmland.rs index a8f879ee2..bc954c305 100644 --- a/pumpkin/src/block/blocks/farmland.rs +++ b/pumpkin/src/block/blocks/farmland.rs @@ -6,7 +6,7 @@ use crate::server::Server; use crate::world::BlockFlags; use crate::world::World; use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; @@ -63,6 +63,6 @@ impl PumpkinBlock for FarmLandBlock { async fn can_place_at(&self, world: &World, pos: &BlockPos) -> bool { let state = world.get_block_state(&pos.up()).await.unwrap(); - !state.is_solid // TODO: add fence gata block + !state.is_solid() // TODO: add fence gata block } } diff --git a/pumpkin/src/block/blocks/fence_gates.rs b/pumpkin/src/block/blocks/fence_gates.rs index f2cf34aec..e45df6694 100644 --- a/pumpkin/src/block/blocks/fence_gates.rs +++ b/pumpkin/src/block/blocks/fence_gates.rs @@ -2,8 +2,8 @@ use std::sync::Arc; use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockProperties; +use pumpkin_data::Block; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_data::tag::RegistryKey; use pumpkin_data::tag::get_tag_values; use pumpkin_protocol::server::play::SUseItemOn; @@ -18,13 +18,13 @@ use crate::world::BlockFlags; use crate::world::World; use pumpkin_data::item::Item; -type FenceGateProperties = pumpkin_data::block::OakFenceGateLikeProperties; +type FenceGateProperties = pumpkin_data::block_properties::OakFenceGateLikeProperties; pub async fn toggle_fence_gate(world: &Arc, block_pos: &BlockPos) -> BlockStateId { let (block, state) = world.get_block_and_block_state(block_pos).await.unwrap(); let mut fence_gate_props = FenceGateProperties::from_state_id(state.id, &block); - fence_gate_props.open = fence_gate_props.open.flip(); + fence_gate_props.open = !fence_gate_props.open; world .set_block_state( block_pos, diff --git a/pumpkin/src/block/blocks/fences.rs b/pumpkin/src/block/blocks/fences.rs index 2fcdc270d..0d87cbd56 100644 --- a/pumpkin/src/block/blocks/fences.rs +++ b/pumpkin/src/block/blocks/fences.rs @@ -1,7 +1,8 @@ use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::{BlockProperties, Boolean}; +use pumpkin_data::Block; +use pumpkin_data::BlockState; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_data::tag::RegistryKey; use pumpkin_data::tag::Tagable; use pumpkin_data::tag::get_tag_values; @@ -10,25 +11,20 @@ use pumpkin_util::math::position::BlockPos; use pumpkin_world::BlockStateId; use pumpkin_world::block::BlockDirection; -type FenceGateProperties = pumpkin_data::block::OakFenceGateLikeProperties; -type FenceLikeProperties = pumpkin_data::block::OakFenceLikeProperties; +type FenceGateProperties = pumpkin_data::block_properties::OakFenceGateLikeProperties; +type FenceLikeProperties = pumpkin_data::block_properties::OakFenceLikeProperties; use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; use crate::server::Server; use crate::world::World; -fn connects_to( - from: &Block, - to: &Block, - to_state_id: BlockStateId, - direction: BlockDirection, -) -> bool { +fn connects_to(from: &Block, to: &Block, to_state: &BlockState, direction: BlockDirection) -> bool { if from.id == to.id { return true; } if to.is_tagged_with("c:fence_gates").unwrap() { - let fence_gate_props = FenceGateProperties::from_state_id(to_state_id, to); + let fence_gate_props = FenceGateProperties::from_state_id(to_state.id, to); if BlockDirection::from_cardinal_direction(fence_gate_props.facing).to_axis() == direction.rotate_clockwise().to_axis() { @@ -42,6 +38,7 @@ fn connects_to( } to.is_tagged_with("c:fences/wooden").unwrap() + || (to_state.is_solid() && to_state.is_full_cube()) } /// This returns an index and not a state id making it so all fences can use the same state calculation function @@ -53,12 +50,12 @@ pub async fn fence_state(world: &World, block: &Block, block_pos: &BlockPos) -> let (other_block, other_block_state) = world.get_block_and_block_state(&offset).await.unwrap(); - if connects_to(block, &other_block, other_block_state.id, direction) { + if connects_to(block, &other_block, &other_block_state, direction) { match direction { - BlockDirection::North => block_properties.north = Boolean::True, - BlockDirection::South => block_properties.south = Boolean::True, - BlockDirection::West => block_properties.west = Boolean::True, - BlockDirection::East => block_properties.east = Boolean::True, + BlockDirection::North => block_properties.north = true, + BlockDirection::South => block_properties.south = true, + BlockDirection::West => block_properties.west = true, + BlockDirection::East => block_properties.east = true, _ => {} } } diff --git a/pumpkin/src/block/blocks/furnace.rs b/pumpkin/src/block/blocks/furnace.rs index 2ae2b1833..54cf18190 100644 --- a/pumpkin/src/block/blocks/furnace.rs +++ b/pumpkin/src/block/blocks/furnace.rs @@ -3,9 +3,9 @@ use std::sync::Arc; use crate::entity::player::Player; use crate::{block::registry::BlockActionResult, world::World}; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockState}; use pumpkin_data::item::Item; use pumpkin_data::screen::WindowType; +use pumpkin_data::{Block, BlockState}; use pumpkin_inventory::Furnace; use pumpkin_macros::pumpkin_block; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/jukebox.rs b/pumpkin/src/block/blocks/jukebox.rs index 89aa6768e..33411337f 100644 --- a/pumpkin/src/block/blocks/jukebox.rs +++ b/pumpkin/src/block/blocks/jukebox.rs @@ -6,8 +6,11 @@ use crate::entity::player::Player; use crate::server::Server; use crate::world::{BlockFlags, World}; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockProperties, BlockState, Boolean, JukeboxLikeProperties}; use pumpkin_data::item::Item; +use pumpkin_data::{ + Block, BlockState, + block_properties::{BlockProperties, JukeboxLikeProperties}, +}; use pumpkin_macros::pumpkin_block; use pumpkin_registry::SYNCED_REGISTRIES; use pumpkin_util::math::position::BlockPos; @@ -22,7 +25,7 @@ impl JukeboxBlock { .await .expect("`location` should be a jukebox") .id; - JukeboxLikeProperties::from_state_id(state_id, block).has_record == Boolean::True + JukeboxLikeProperties::from_state_id(state_id, block).has_record } async fn set_record( @@ -32,13 +35,7 @@ impl JukeboxBlock { location: BlockPos, world: &Arc, ) { - let new_state = JukeboxLikeProperties { - has_record: if has_record { - Boolean::True - } else { - Boolean::False - }, - }; + let new_state = JukeboxLikeProperties { has_record }; world .set_block_state(&location, new_state.to_state_id(block), BlockFlags::empty()) .await; diff --git a/pumpkin/src/block/blocks/logs.rs b/pumpkin/src/block/blocks/logs.rs index 4063e9e14..8cc7f07b7 100644 --- a/pumpkin/src/block/blocks/logs.rs +++ b/pumpkin/src/block/blocks/logs.rs @@ -1,6 +1,6 @@ use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockProperties; +use pumpkin_data::Block; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_data::tag::RegistryKey; use pumpkin_data::tag::get_tag_values; use pumpkin_protocol::server::play::SUseItemOn; @@ -12,7 +12,7 @@ use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; use crate::world::World; use crate::{entity::player::Player, server::Server}; -type LogProperties = pumpkin_data::block::PaleOakWoodLikeProperties; +type LogProperties = pumpkin_data::block_properties::PaleOakWoodLikeProperties; pub struct LogBlock; impl BlockMetadata for LogBlock { diff --git a/pumpkin/src/block/blocks/mod.rs b/pumpkin/src/block/blocks/mod.rs index 4283aedfb..27862eb23 100644 --- a/pumpkin/src/block/blocks/mod.rs +++ b/pumpkin/src/block/blocks/mod.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::screen::WindowType; use pumpkin_inventory::{Container, OpenContainer}; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/redstone/buttons.rs b/pumpkin/src/block/blocks/redstone/buttons.rs index b2f930c25..a3f8b89e1 100644 --- a/pumpkin/src/block/blocks/redstone/buttons.rs +++ b/pumpkin/src/block/blocks/redstone/buttons.rs @@ -1,10 +1,10 @@ use std::sync::Arc; use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockFace; -use pumpkin_data::block::BlockState; -use pumpkin_data::block::{BlockProperties, Boolean}; +use pumpkin_data::Block; +use pumpkin_data::BlockState; +use pumpkin_data::block_properties::BlockFace; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_data::item::Item; use pumpkin_data::tag::RegistryKey; use pumpkin_data::tag::get_tag_values; @@ -14,7 +14,7 @@ use pumpkin_world::BlockStateId; use pumpkin_world::block::BlockDirection; use pumpkin_world::chunk::TickPriority; -type ButtonLikeProperties = pumpkin_data::block::LeverLikeProperties; +type ButtonLikeProperties = pumpkin_data::block_properties::LeverLikeProperties; use crate::block::blocks::redstone::lever::LeverLikePropertiesExt; use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; @@ -28,8 +28,8 @@ async fn click_button(world: &Arc, block_pos: &BlockPos) { let (block, state) = world.get_block_and_block_state(block_pos).await.unwrap(); let mut button_props = ButtonLikeProperties::from_state_id(state.id, &block); - if !button_props.powered.to_bool() { - button_props.powered = Boolean::True; + if !button_props.powered { + button_props.powered = true; world .set_block_state( block_pos, @@ -114,7 +114,7 @@ impl PumpkinBlock for ButtonBlock { async fn on_scheduled_tick(&self, world: &Arc, block: &Block, block_pos: &BlockPos) { let state = world.get_block_state(block_pos).await.unwrap(); let mut props = ButtonLikeProperties::from_state_id(state.id, block); - props.powered = Boolean::False; + props.powered = false; world .set_block_state(block_pos, props.to_state_id(block), BlockFlags::NOTIFY_ALL) .await; @@ -139,11 +139,7 @@ impl PumpkinBlock for ButtonBlock { _direction: &BlockDirection, ) -> u8 { let button_props = ButtonLikeProperties::from_state_id(state.id, block); - if button_props.powered.to_bool() { - 15 - } else { - 0 - } + if button_props.powered { 15 } else { 0 } } async fn get_strong_redstone_power( @@ -155,7 +151,7 @@ impl PumpkinBlock for ButtonBlock { direction: &BlockDirection, ) -> u8 { let button_props = ButtonLikeProperties::from_state_id(state.id, block); - if button_props.powered.to_bool() && button_props.get_direction() == *direction { + if button_props.powered && button_props.get_direction() == *direction { 15 } else { 0 @@ -172,7 +168,7 @@ impl PumpkinBlock for ButtonBlock { ) { if !moved { let button_props = ButtonLikeProperties::from_state_id(old_state_id, block); - if button_props.powered.to_bool() { + if button_props.powered { Self::update_neighbors(world, &location, &button_props).await; } } diff --git a/pumpkin/src/block/blocks/redstone/lever.rs b/pumpkin/src/block/blocks/redstone/lever.rs index 428d211f2..08baa8bc3 100644 --- a/pumpkin/src/block/blocks/redstone/lever.rs +++ b/pumpkin/src/block/blocks/redstone/lever.rs @@ -3,8 +3,11 @@ use std::sync::Arc; use crate::entity::player::Player; use crate::world::BlockFlags; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockFace, BlockState, LeverLikeProperties}; -use pumpkin_data::{block::BlockProperties, item::Item}; +use pumpkin_data::{ + Block, BlockState, + block_properties::{BlockFace, BlockProperties, LeverLikeProperties}, + item::Item, +}; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; @@ -21,7 +24,7 @@ async fn toggle_lever(world: &Arc, block_pos: &BlockPos) { let (block, state) = world.get_block_and_block_state(block_pos).await.unwrap(); let mut lever_props = LeverLikeProperties::from_state_id(state.id, &block); - lever_props.powered = lever_props.powered.flip(); + lever_props.powered = !lever_props.powered; world .set_block_state( block_pos, @@ -108,7 +111,7 @@ impl PumpkinBlock for LeverBlock { _direction: &BlockDirection, ) -> u8 { let lever_props = LeverLikeProperties::from_state_id(state.id, block); - if lever_props.powered.to_bool() { 15 } else { 0 } + if lever_props.powered { 15 } else { 0 } } async fn get_strong_redstone_power( @@ -120,7 +123,7 @@ impl PumpkinBlock for LeverBlock { direction: &BlockDirection, ) -> u8 { let lever_props = LeverLikeProperties::from_state_id(state.id, block); - if lever_props.powered.to_bool() && &lever_props.get_direction() == direction { + if lever_props.powered && &lever_props.get_direction() == direction { 15 } else { 0 @@ -137,7 +140,7 @@ impl PumpkinBlock for LeverBlock { ) { if !moved { let lever_props = LeverLikeProperties::from_state_id(old_state_id, block); - if lever_props.powered.to_bool() { + if lever_props.powered { Self::update_neighbors(world, &location, &lever_props).await; } } diff --git a/pumpkin/src/block/blocks/redstone/mod.rs b/pumpkin/src/block/blocks/redstone/mod.rs index f71008f57..a933dda81 100644 --- a/pumpkin/src/block/blocks/redstone/mod.rs +++ b/pumpkin/src/block/blocks/redstone/mod.rs @@ -4,7 +4,7 @@ use std::sync::Arc; * This implementation is heavily based on * Updated to fit pumpkin by 4lve */ -use pumpkin_data::block::{Block, BlockState}; +use pumpkin_data::{Block, BlockState}; use pumpkin_util::math::position::BlockPos; use pumpkin_world::block::BlockDirection; @@ -49,7 +49,7 @@ pub async fn get_redstone_power( pos: BlockPos, facing: &BlockDirection, ) -> u8 { - if state.is_solid { + if state.is_solid() { return std::cmp::max( get_max_strong_power(world, &pos, true).await, get_weak_power(block, state, world, &pos, facing, true).await, @@ -65,7 +65,7 @@ async fn get_redstone_power_no_dust( pos: BlockPos, facing: &BlockDirection, ) -> u8 { - if state.is_solid { + if state.is_solid() { return std::cmp::max( get_max_strong_power(world, &pos, false).await, get_weak_power(block, state, world, &pos, facing, false).await, @@ -178,7 +178,7 @@ pub async fn diode_get_input_strength( let input_pos = pos.offset(facing.to_offset()); let (input_block, input_state) = world.get_block_and_block_state(&input_pos).await.unwrap(); let power: u8 = get_redstone_power(&input_block, &input_state, world, input_pos, facing).await; - if power == 0 && input_state.is_solid { + if power == 0 && input_state.is_solid() { return get_max_weak_power(world, &input_pos, true).await; } power diff --git a/pumpkin/src/block/blocks/redstone/observer.rs b/pumpkin/src/block/blocks/redstone/observer.rs index 62d4ea0f1..25b0b2227 100644 --- a/pumpkin/src/block/blocks/redstone/observer.rs +++ b/pumpkin/src/block/blocks/redstone/observer.rs @@ -2,7 +2,10 @@ use std::sync::Arc; use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockProperties, BlockState, Boolean, ObserverLikeProperties}; +use pumpkin_data::{ + Block, BlockState, + block_properties::{BlockProperties, ObserverLikeProperties}, +}; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; @@ -53,8 +56,8 @@ impl PumpkinBlock for ObserverBlock { let state = world.get_block_state(block_pos).await.unwrap(); let mut props = ObserverLikeProperties::from_state_id(state.id, block); - if props.powered.to_bool() { - props.powered = Boolean::False; + if props.powered { + props.powered = false; world .set_block_state( block_pos, @@ -63,7 +66,7 @@ impl PumpkinBlock for ObserverBlock { ) .await; } else { - props.powered = Boolean::True; + props.powered = true; world .set_block_state( block_pos, @@ -91,7 +94,7 @@ impl PumpkinBlock for ObserverBlock { ) -> BlockStateId { let props = ObserverLikeProperties::from_state_id(state, block); - if &props.facing.to_block_direction() == direction && !props.powered.to_bool() { + if &props.facing.to_block_direction() == direction && !props.powered { Self::schedule_tick(world, block_pos).await; } @@ -117,7 +120,7 @@ impl PumpkinBlock for ObserverBlock { direction: &BlockDirection, ) -> u8 { let props = ObserverLikeProperties::from_state_id(state.id, block); - if &props.facing.to_block_direction() == direction && props.powered.to_bool() { + if &props.facing.to_block_direction() == direction && props.powered { 15 } else { 0 @@ -146,7 +149,7 @@ impl PumpkinBlock for ObserverBlock { ) { if !moved { let props = ObserverLikeProperties::from_state_id(old_state_id, block); - if props.powered.to_bool() + if props.powered && world .is_block_tick_scheduled(&location, &Block::OBSERVER) .await diff --git a/pumpkin/src/block/blocks/redstone/piston.rs b/pumpkin/src/block/blocks/redstone/piston.rs index 9f7af1f1b..0cac9a267 100644 --- a/pumpkin/src/block/blocks/redstone/piston.rs +++ b/pumpkin/src/block/blocks/redstone/piston.rs @@ -2,7 +2,7 @@ use std::sync::Arc; use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockProperties, Boolean}; +use pumpkin_data::{Block, block_properties::BlockProperties}; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; use pumpkin_world::{BlockStateId, block::BlockDirection}; @@ -15,7 +15,7 @@ use crate::{ use super::block_receives_redstone_power; -type PistonProps = pumpkin_data::block::StickyPistonLikeProperties; +type PistonProps = pumpkin_data::block_properties::StickyPistonLikeProperties; pub struct PistonBlock; @@ -43,7 +43,7 @@ impl PumpkinBlock for PistonBlock { _other: bool, ) -> BlockStateId { let mut props = PistonProps::default(block); - props.extended = Boolean::False; + props.extended = false; props.facing = player.living_entity.entity.get_facing().opposite(); props.to_state_id(block) } @@ -81,7 +81,7 @@ async fn try_move(world: &Arc, block: &Block, block_pos: &BlockPos) { let is_receiving_power = block_receives_redstone_power(world, block_pos).await; if is_receiving_power { - props.extended = props.extended.flip(); + props.extended = !props.extended; world .set_block_state( block_pos, diff --git a/pumpkin/src/block/blocks/redstone/rails/activator_rail.rs b/pumpkin/src/block/blocks/redstone/rails/activator_rail.rs index 9fde2eb52..f5aece31f 100644 --- a/pumpkin/src/block/blocks/redstone/rails/activator_rail.rs +++ b/pumpkin/src/block/blocks/redstone/rails/activator_rail.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/redstone/rails/common.rs b/pumpkin/src/block/blocks/redstone/rails/common.rs index 6c654efc3..6bc1dedb5 100644 --- a/pumpkin/src/block/blocks/redstone/rails/common.rs +++ b/pumpkin/src/block/blocks/redstone/rails/common.rs @@ -1,6 +1,9 @@ use std::sync::Arc; -use pumpkin_data::block::{Block, HorizontalFacing, RailShape, StraightRailShape}; +use pumpkin_data::{ + Block, + block_properties::{HorizontalFacing, RailShape, StraightRailShape}, +}; use pumpkin_util::math::position::BlockPos; use pumpkin_world::{BlockStateId, block::HorizontalFacingExt}; @@ -34,7 +37,7 @@ pub(super) async fn rail_placement_is_valid(world: &World, block: &Block, pos: & pub(super) async fn can_place_rail_at(world: &World, pos: &BlockPos) -> bool { let state = world.get_block_state(&pos.down()).await.unwrap(); - state.is_solid + state.is_solid() } pub(super) async fn compute_placed_rail_shape( diff --git a/pumpkin/src/block/blocks/redstone/rails/detector_rail.rs b/pumpkin/src/block/blocks/redstone/rails/detector_rail.rs index cb0f595ea..706e2f236 100644 --- a/pumpkin/src/block/blocks/redstone/rails/detector_rail.rs +++ b/pumpkin/src/block/blocks/redstone/rails/detector_rail.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/redstone/rails/mod.rs b/pumpkin/src/block/blocks/redstone/rails/mod.rs index 842a10ec0..b908b3a37 100644 --- a/pumpkin/src/block/blocks/redstone/rails/mod.rs +++ b/pumpkin/src/block/blocks/redstone/rails/mod.rs @@ -1,8 +1,10 @@ -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockProperties; -use pumpkin_data::block::HorizontalFacing; -use pumpkin_data::block::RailShape; -use pumpkin_data::block::StraightRailShape; +use pumpkin_data::Block; +use pumpkin_data::block_properties::BlockProperties; +use pumpkin_data::block_properties::HorizontalFacing; +use pumpkin_data::block_properties::PoweredRailLikeProperties; +use pumpkin_data::block_properties::RailLikeProperties; +use pumpkin_data::block_properties::RailShape; +use pumpkin_data::block_properties::StraightRailShape; use pumpkin_data::tag::Tagable; use pumpkin_util::math::position::BlockPos; use pumpkin_world::BlockStateId; @@ -160,30 +162,24 @@ impl Rail { } enum RailProperties { - Rail(pumpkin_data::block::RailLikeProperties), - StraightRail(pumpkin_data::block::PoweredRailLikeProperties), + Rail(RailLikeProperties), + StraightRail(PoweredRailLikeProperties), } impl RailProperties { pub fn default(block: &Block) -> Self { if *block == Block::RAIL { - Self::Rail(pumpkin_data::block::RailLikeProperties::default(block)) + Self::Rail(RailLikeProperties::default(block)) } else { - Self::StraightRail(pumpkin_data::block::PoweredRailLikeProperties::default( - block, - )) + Self::StraightRail(PoweredRailLikeProperties::default(block)) } } pub fn new(state_id: u16, block: &Block) -> Self { if *block == Block::RAIL { - Self::Rail(pumpkin_data::block::RailLikeProperties::from_state_id( - state_id, block, - )) + Self::Rail(RailLikeProperties::from_state_id(state_id, block)) } else { - Self::StraightRail( - pumpkin_data::block::PoweredRailLikeProperties::from_state_id(state_id, block), - ) + Self::StraightRail(PoweredRailLikeProperties::from_state_id(state_id, block)) } } diff --git a/pumpkin/src/block/blocks/redstone/rails/powered_rail.rs b/pumpkin/src/block/blocks/redstone/rails/powered_rail.rs index fd2d4911e..727cc546b 100644 --- a/pumpkin/src/block/blocks/redstone/rails/powered_rail.rs +++ b/pumpkin/src/block/blocks/redstone/rails/powered_rail.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/redstone/rails/rail.rs b/pumpkin/src/block/blocks/redstone/rails/rail.rs index a2bf0ee8c..e5a077883 100644 --- a/pumpkin/src/block/blocks/redstone/rails/rail.rs +++ b/pumpkin/src/block/blocks/redstone/rails/rail.rs @@ -1,7 +1,7 @@ use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::HorizontalFacing; -use pumpkin_data::block::RailShape; +use pumpkin_data::Block; +use pumpkin_data::block_properties::HorizontalFacing; +use pumpkin_data::block_properties::RailShape; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/blocks/redstone/redstone_block.rs b/pumpkin/src/block/blocks/redstone/redstone_block.rs index 2f39f71e4..e3a79e3f3 100644 --- a/pumpkin/src/block/blocks/redstone/redstone_block.rs +++ b/pumpkin/src/block/blocks/redstone/redstone_block.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockState}; +use pumpkin_data::{Block, BlockState}; use pumpkin_macros::pumpkin_block; use pumpkin_util::math::position::BlockPos; use pumpkin_world::block::BlockDirection; diff --git a/pumpkin/src/block/blocks/redstone/redstone_lamp.rs b/pumpkin/src/block/blocks/redstone/redstone_lamp.rs index 0fbda712e..ec56d048f 100644 --- a/pumpkin/src/block/blocks/redstone/redstone_lamp.rs +++ b/pumpkin/src/block/blocks/redstone/redstone_lamp.rs @@ -2,7 +2,7 @@ use std::sync::Arc; use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockProperties, Boolean}; +use pumpkin_data::{Block, block_properties::BlockProperties}; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; @@ -16,7 +16,7 @@ use crate::{ use super::block_receives_redstone_power; -type RedstoneLampProperties = pumpkin_data::block::RedstoneOreLikeProperties; +type RedstoneLampProperties = pumpkin_data::block_properties::RedstoneOreLikeProperties; #[pumpkin_block("minecraft:redstone_lamp")] pub struct RedstoneLamp; @@ -35,7 +35,7 @@ impl PumpkinBlock for RedstoneLamp { _other: bool, ) -> BlockStateId { let mut props = RedstoneLampProperties::default(block); - props.lit = Boolean::from_bool(block_receives_redstone_power(world, block_pos).await); + props.lit = block_receives_redstone_power(world, block_pos).await; props.to_state_id(block) } @@ -49,7 +49,7 @@ impl PumpkinBlock for RedstoneLamp { ) { let state = world.get_block_state(block_pos).await.unwrap(); let mut props = RedstoneLampProperties::from_state_id(state.id, block); - let is_lit = props.lit.to_bool(); + let is_lit = props.lit; let is_receiving_power = block_receives_redstone_power(world, block_pos).await; if is_lit != is_receiving_power { @@ -58,7 +58,7 @@ impl PumpkinBlock for RedstoneLamp { .schedule_block_tick(block, *block_pos, 4, TickPriority::Normal) .await; } else { - props.lit = props.lit.flip(); + props.lit = !props.lit; world .set_block_state( block_pos, @@ -73,11 +73,11 @@ impl PumpkinBlock for RedstoneLamp { async fn on_scheduled_tick(&self, world: &Arc, block: &Block, block_pos: &BlockPos) { let state = world.get_block_state(block_pos).await.unwrap(); let mut props = RedstoneLampProperties::from_state_id(state.id, block); - let is_lit = props.lit.to_bool(); + let is_lit = props.lit; let is_receiving_power = block_receives_redstone_power(world, block_pos).await; if is_lit && !is_receiving_power { - props.lit = props.lit.flip(); + props.lit = !props.lit; world .set_block_state( block_pos, diff --git a/pumpkin/src/block/blocks/redstone/redstone_torch.rs b/pumpkin/src/block/blocks/redstone/redstone_torch.rs index 418711692..a69cedb61 100644 --- a/pumpkin/src/block/blocks/redstone/redstone_torch.rs +++ b/pumpkin/src/block/blocks/redstone/redstone_torch.rs @@ -2,9 +2,9 @@ use std::sync::Arc; use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockState; -use pumpkin_data::block::{BlockProperties, Boolean}; +use pumpkin_data::Block; +use pumpkin_data::BlockState; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; use pumpkin_world::BlockStateId; @@ -12,8 +12,8 @@ use pumpkin_world::block::BlockDirection; use pumpkin_world::block::HorizontalFacingExt; use pumpkin_world::chunk::TickPriority; -type RWallTorchProps = pumpkin_data::block::FurnaceLikeProperties; -type RTorchProps = pumpkin_data::block::RedstoneOreLikeProperties; +type RWallTorchProps = pumpkin_data::block_properties::FurnaceLikeProperties; +type RTorchProps = pumpkin_data::block_properties::RedstoneOreLikeProperties; use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; use crate::server::Server; @@ -50,12 +50,11 @@ impl PumpkinBlock for RedstoneTorchBlock { if face.is_horizontal() { let mut torch_props = RWallTorchProps::default(&Block::REDSTONE_WALL_TORCH); torch_props.facing = face.to_horizontal_facing().unwrap().opposite(); - torch_props.lit = Boolean::from_bool(should_be_lit(world, block_pos, face).await); + torch_props.lit = should_be_lit(world, block_pos, face).await; return torch_props.to_state_id(&Block::REDSTONE_WALL_TORCH); } let mut torch_props = RTorchProps::default(&Block::REDSTONE_TORCH); - torch_props.lit = - Boolean::from_bool(should_be_lit(world, block_pos, &BlockDirection::Down).await); + torch_props.lit = should_be_lit(world, block_pos, &BlockDirection::Down).await; return torch_props.to_state_id(&Block::REDSTONE_TORCH); } @@ -75,7 +74,7 @@ impl PumpkinBlock for RedstoneTorchBlock { if block == &Block::REDSTONE_WALL_TORCH { let props = RWallTorchProps::from_state_id(state.id, block); - if props.lit.to_bool() + if props.lit != should_be_lit( world, block_pos, @@ -89,7 +88,7 @@ impl PumpkinBlock for RedstoneTorchBlock { } } else if block == &Block::REDSTONE_TORCH { let props = RTorchProps::from_state_id(state.id, block); - if props.lit.to_bool() != should_be_lit(world, block_pos, &BlockDirection::Down).await { + if props.lit != should_be_lit(world, block_pos, &BlockDirection::Down).await { world .schedule_block_tick(block, *block_pos, 2, TickPriority::Normal) .await; @@ -116,12 +115,12 @@ impl PumpkinBlock for RedstoneTorchBlock { ) -> u8 { if block == &Block::REDSTONE_WALL_TORCH { let props = RWallTorchProps::from_state_id(state.id, block); - if props.lit.to_bool() && direction != &props.facing.to_block_direction() { + if props.lit && direction != &props.facing.to_block_direction() { return 15; } } else if block == &Block::REDSTONE_TORCH { let props = RTorchProps::from_state_id(state.id, block); - if props.lit.to_bool() && direction != &BlockDirection::Up { + if props.lit && direction != &BlockDirection::Up { return 15; } } @@ -139,12 +138,12 @@ impl PumpkinBlock for RedstoneTorchBlock { if direction == &BlockDirection::Down { if block == &Block::REDSTONE_WALL_TORCH { let props = RWallTorchProps::from_state_id(state.id, block); - if props.lit.to_bool() { + if props.lit { return 15; } } else if block == &Block::REDSTONE_TORCH { let props = RTorchProps::from_state_id(state.id, block); - if props.lit.to_bool() { + if props.lit { return 15; } } @@ -162,8 +161,8 @@ impl PumpkinBlock for RedstoneTorchBlock { &props.facing.to_block_direction().opposite(), ) .await; - if props.lit.to_bool() != should_be_lit_now { - props.lit = Boolean::from_bool(should_be_lit_now); + if props.lit != should_be_lit_now { + props.lit = should_be_lit_now; world .set_block_state(block_pos, props.to_state_id(block), BlockFlags::NOTIFY_ALL) .await; @@ -172,8 +171,8 @@ impl PumpkinBlock for RedstoneTorchBlock { } else if block == &Block::REDSTONE_TORCH { let mut props = RTorchProps::from_state_id(state.id, block); let should_be_lit_now = should_be_lit(world, block_pos, &BlockDirection::Down).await; - if props.lit.to_bool() != should_be_lit_now { - props.lit = Boolean::from_bool(should_be_lit_now); + if props.lit != should_be_lit_now { + props.lit = should_be_lit_now; world .set_block_state(block_pos, props.to_state_id(block), BlockFlags::NOTIFY_ALL) .await; diff --git a/pumpkin/src/block/blocks/redstone/redstone_wire.rs b/pumpkin/src/block/blocks/redstone/redstone_wire.rs index f676fc2d7..502fa8321 100644 --- a/pumpkin/src/block/blocks/redstone/redstone_wire.rs +++ b/pumpkin/src/block/blocks/redstone/redstone_wire.rs @@ -1,13 +1,13 @@ use std::sync::Arc; use async_trait::async_trait; -use pumpkin_data::block::BlockProperties; -use pumpkin_data::block::{ - Block, BlockState, EastWireConnection, EnumVariants, Integer0To15, NorthWireConnection, +use pumpkin_data::block_properties::{ + BlockProperties, EastWireConnection, EnumVariants, Integer0To15, NorthWireConnection, ObserverLikeProperties, RedstoneWireLikeProperties, RepeaterLikeProperties, SouthWireConnection, WestWireConnection, }; use pumpkin_data::item::Item; +use pumpkin_data::{Block, BlockState}; use pumpkin_macros::pumpkin_block; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; @@ -34,7 +34,7 @@ impl PumpkinBlock for RedstoneWireBlock { async fn can_place_at(&self, world: &World, block_pos: &BlockPos) -> bool { let floor = world.get_block_state(&block_pos.down()).await.unwrap(); // TODO: Only check face instead of block - return floor.is_solid; + return floor.is_full_cube(); } async fn on_place( @@ -351,7 +351,7 @@ pub async fn get_side(world: &World, pos: &BlockPos, side: BlockDirection) -> Wi let up_pos = pos.offset(BlockDirection::Up.to_offset()); let up_state = world.get_block_state(&up_pos).await.unwrap(); - if !up_state.is_solid + if !up_state.is_solid() && can_connect_diagonal_to( &world .get_block(&neighbor_pos.offset(BlockDirection::Up.to_offset())) @@ -360,7 +360,7 @@ pub async fn get_side(world: &World, pos: &BlockPos, side: BlockDirection) -> Wi ) { WireConnection::Up - } else if !state.is_solid + } else if !state.is_solid() && can_connect_diagonal_to( &world .get_block(&neighbor_pos.offset(BlockDirection::Down.to_offset())) @@ -596,7 +596,7 @@ async fn calculate_power(world: &World, pos: &BlockPos) -> u8 { get_redstone_power_no_dust(&neighbor, &neighbor_state, world, neighbor_pos, side).await, ); if side.is_horizontal() { - if !up_state.is_solid + if !up_state.is_solid() /*TODO: && !neighbor.is_transparent() */ { wire_power = max_wire_power( @@ -607,7 +607,7 @@ async fn calculate_power(world: &World, pos: &BlockPos) -> u8 { .await; } - if !neighbor_state.is_solid { + if !neighbor_state.is_solid() { wire_power = max_wire_power( wire_power, world, diff --git a/pumpkin/src/block/blocks/redstone/repeater.rs b/pumpkin/src/block/blocks/redstone/repeater.rs index 175655b6f..1b6ecd8a4 100644 --- a/pumpkin/src/block/blocks/redstone/repeater.rs +++ b/pumpkin/src/block/blocks/redstone/repeater.rs @@ -2,9 +2,8 @@ use std::sync::Arc; use async_trait::async_trait; use pumpkin_data::{ - block::{ - Block, BlockProperties, BlockState, Boolean, EnumVariants, HorizontalFacing, Integer1To4, - }, + Block, BlockState, + block_properties::{BlockProperties, EnumVariants, HorizontalFacing, Integer1To4}, item::Item, }; use pumpkin_macros::pumpkin_block; @@ -25,7 +24,7 @@ use crate::{ use super::{diode_get_input_strength, get_weak_power, is_diode}; -type RepeaterProperties = pumpkin_data::block::RepeaterLikeProperties; +type RepeaterProperties = pumpkin_data::block_properties::RepeaterLikeProperties; #[pumpkin_block("minecraft:repeater")] pub struct RepeaterBlock; @@ -50,14 +49,10 @@ impl PumpkinBlock for RepeaterBlock { .get_horizontal_facing() .opposite(); props.facing = dir; - props.locked = Boolean::from_bool(should_be_locked(&dir, world, block_pos).await); + props.locked = should_be_locked(&dir, world, block_pos).await; - if !props.locked.to_bool() { - props.powered = if should_be_powered(props, world, block_pos).await { - Boolean::True - } else { - Boolean::False - } + if !props.locked { + props.powered = should_be_powered(props, world, block_pos).await; } props.to_state_id(block) @@ -74,21 +69,21 @@ impl PumpkinBlock for RepeaterBlock { let state = world.get_block_state(block_pos).await.unwrap(); let mut rep = RepeaterProperties::from_state_id(state.id, block); let should_be_locked = should_be_locked(&rep.facing, world, block_pos).await; - if !rep.locked.to_bool() && should_be_locked { - rep.locked = Boolean::True; + if !rep.locked && should_be_locked { + rep.locked = true; world .set_block_state(block_pos, rep.to_state_id(block), BlockFlags::empty()) .await; - } else if rep.locked.to_bool() && !should_be_locked { - rep.locked = Boolean::False; + } else if rep.locked && !should_be_locked { + rep.locked = false; world .set_block_state(block_pos, rep.to_state_id(block), BlockFlags::empty()) .await; } - if !rep.locked.to_bool() && !world.is_block_tick_scheduled(block_pos, block).await { + if !rep.locked && !world.is_block_tick_scheduled(block_pos, block).await { let should_be_powered = should_be_powered(rep, world, block_pos).await; - if should_be_powered != rep.powered.to_bool() { + if should_be_powered != rep.powered { schedule_tick(rep, world, *block_pos, should_be_powered).await; } } @@ -97,19 +92,19 @@ impl PumpkinBlock for RepeaterBlock { async fn on_scheduled_tick(&self, world: &Arc, block: &Block, block_pos: &BlockPos) { let state = world.get_block_state(block_pos).await.unwrap(); let mut rep = RepeaterProperties::from_state_id(state.id, block); - if rep.locked.to_bool() { + if rep.locked { return; } let should_be_powered = should_be_powered(rep, world, block_pos).await; - if rep.powered.to_bool() && !should_be_powered { - rep.powered = Boolean::False; + if rep.powered && !should_be_powered { + rep.powered = false; world .set_block_state(block_pos, rep.to_state_id(block), BlockFlags::empty()) .await; on_state_change(rep, world, block_pos).await; - } else if !rep.powered.to_bool() { - rep.powered = Boolean::True; + } else if !rep.powered { + rep.powered = true; world .set_block_state(block_pos, rep.to_state_id(block), BlockFlags::empty()) .await; @@ -154,9 +149,7 @@ impl PumpkinBlock for RepeaterBlock { direction: &BlockDirection, ) -> u8 { let repeater_props = RepeaterProperties::from_state_id(state.id, block); - if &repeater_props.facing.to_block_direction() == direction - && repeater_props.powered.to_bool() - { + if &repeater_props.facing.to_block_direction() == direction && repeater_props.powered { return 15; } 0 @@ -171,9 +164,7 @@ impl PumpkinBlock for RepeaterBlock { direction: &BlockDirection, ) -> u8 { let repeater_props = RepeaterProperties::from_state_id(state.id, block); - if &repeater_props.facing.to_block_direction() == direction - && repeater_props.powered.to_bool() - { + if &repeater_props.facing.to_block_direction() == direction && repeater_props.powered { return 15; } 0 diff --git a/pumpkin/src/block/blocks/redstone/target_block.rs b/pumpkin/src/block/blocks/redstone/target_block.rs index 0eec0f69a..b2e2f4d7e 100644 --- a/pumpkin/src/block/blocks/redstone/target_block.rs +++ b/pumpkin/src/block/blocks/redstone/target_block.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockState}; +use pumpkin_data::{Block, BlockState}; use pumpkin_macros::pumpkin_block; use pumpkin_world::block::BlockDirection; diff --git a/pumpkin/src/block/blocks/redstone/turbo.rs b/pumpkin/src/block/blocks/redstone/turbo.rs index 085b7fcf2..60dd7bb34 100644 --- a/pumpkin/src/block/blocks/redstone/turbo.rs +++ b/pumpkin/src/block/blocks/redstone/turbo.rs @@ -2,14 +2,14 @@ //! the accelerator created by theosib. For more information, see: //! . -use std::sync::Arc; - -use pumpkin_data::block::{ - Block, BlockProperties, BlockState, EnumVariants, Integer0To15, RedstoneWireLikeProperties, +use pumpkin_data::{ + Block, BlockState, + block_properties::{BlockProperties, EnumVariants, Integer0To15, RedstoneWireLikeProperties}, }; use pumpkin_util::math::{position::BlockPos, vector3::Vector3}; use pumpkin_world::block::BlockDirection; use rustc_hash::FxHashMap; +use std::sync::Arc; use crate::world::{BlockFlags, World}; @@ -384,10 +384,10 @@ impl RedstoneWireTurbo { let neighbor = &self.get_node(neighbor_id).state; block_power = self.get_max_current_strength(neighbor_id, block_power); - if !neighbor.is_solid { + if !neighbor.is_solid() { let neighbor_down = neighbors[Self::RS_NEIGHBORS_DN[m]]; block_power = self.get_max_current_strength(neighbor_down, block_power); - } else if !center_up.is_solid + } else if !center_up.is_solid() /* TODO: && !neighbor.is_transparent()*/ { let neighbor_up = neighbors[Self::RS_NEIGHBORS_UP[m]]; diff --git a/pumpkin/src/block/blocks/signs.rs b/pumpkin/src/block/blocks/signs.rs index 5ba780766..6f78fa56a 100644 --- a/pumpkin/src/block/blocks/signs.rs +++ b/pumpkin/src/block/blocks/signs.rs @@ -1,8 +1,8 @@ use std::sync::Arc; use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockProperties; +use pumpkin_data::Block; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_data::tag::RegistryKey; use pumpkin_data::tag::get_tag_values; use pumpkin_protocol::server::play::SUseItemOn; @@ -15,7 +15,7 @@ use crate::entity::player::Player; use crate::server::Server; use crate::world::World; -type SignProperties = pumpkin_data::block::OakSignLikeProperties; +type SignProperties = pumpkin_data::block_properties::OakSignLikeProperties; pub struct SignBlock; diff --git a/pumpkin/src/block/blocks/sugar_cane.rs b/pumpkin/src/block/blocks/sugar_cane.rs index 6c1df6962..6d37947be 100644 --- a/pumpkin/src/block/blocks/sugar_cane.rs +++ b/pumpkin/src/block/blocks/sugar_cane.rs @@ -1,10 +1,11 @@ use std::sync::Arc; use async_trait::async_trait; -use pumpkin_data::block::{ - Block, BlockProperties, CactusLikeProperties, EnumVariants, Integer0To15, -}; use pumpkin_data::tag::Tagable; +use pumpkin_data::{ + Block, + block_properties::{BlockProperties, CactusLikeProperties, EnumVariants, Integer0To15}, +}; use pumpkin_macros::pumpkin_block; use pumpkin_world::BlockStateId; use pumpkin_world::block::BlockDirection; @@ -27,7 +28,7 @@ impl PumpkinBlock for SugarCaneBlock { } async fn random_tick(&self, block: &Block, world: &Arc, pos: &BlockPos) { - if world.get_block_state(&pos.up()).await.unwrap().air { + if world.get_block_state(&pos.up()).await.unwrap().is_air() { let state_id = world .get_block_state(pos) .await diff --git a/pumpkin/src/block/blocks/tnt.rs b/pumpkin/src/block/blocks/tnt.rs index 0df8a3dfe..6c50c9101 100644 --- a/pumpkin/src/block/blocks/tnt.rs +++ b/pumpkin/src/block/blocks/tnt.rs @@ -7,7 +7,7 @@ use crate::entity::tnt::TNTEntity; use crate::server::Server; use crate::world::{BlockFlags, World}; use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::entity::EntityType; use pumpkin_data::item::Item; use pumpkin_data::sound::SoundCategory; diff --git a/pumpkin/src/block/blocks/torches.rs b/pumpkin/src/block/blocks/torches.rs index 5039f98b1..3d1d85729 100644 --- a/pumpkin/src/block/blocks/torches.rs +++ b/pumpkin/src/block/blocks/torches.rs @@ -1,13 +1,13 @@ use crate::entity::player::Player; use async_trait::async_trait; -use pumpkin_data::block::Block; -use pumpkin_data::block::BlockProperties; +use pumpkin_data::Block; +use pumpkin_data::block_properties::BlockProperties; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; use pumpkin_world::BlockStateId; use pumpkin_world::block::BlockDirection; -type WallTorchProps = pumpkin_data::block::WallTorchLikeProperties; +type WallTorchProps = pumpkin_data::block_properties::WallTorchLikeProperties; // Normal tourches don't have properties use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; diff --git a/pumpkin/src/block/fluids/flowing_fluid.rs b/pumpkin/src/block/fluids/flowing_fluid.rs index 0802ce7d4..4061dc851 100644 --- a/pumpkin/src/block/fluids/flowing_fluid.rs +++ b/pumpkin/src/block/fluids/flowing_fluid.rs @@ -3,7 +3,7 @@ use std::sync::Arc; use async_trait::async_trait; use pumpkin_data::{ - block::Block, + Block, fluid::{EnumVariants, Falling, Fluid, FluidProperties, Level}, }; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/mod.rs b/pumpkin/src/block/mod.rs index 65aaa34f0..f164edcf5 100644 --- a/pumpkin/src/block/mod.rs +++ b/pumpkin/src/block/mod.rs @@ -26,9 +26,9 @@ use blocks::{ }; use fluids::lava::FlowingLava; use fluids::water::FlowingWater; -use pumpkin_data::block::{Block, BlockState}; use pumpkin_data::entity::EntityType; use pumpkin_data::item::Item; +use pumpkin_data::{Block, BlockState}; use pumpkin_util::loot_table::{ AlternativeEntry, ItemEntry, LootCondition, LootPool, LootPoolEntryTypes, LootTable, }; diff --git a/pumpkin/src/block/pumpkin_block.rs b/pumpkin/src/block/pumpkin_block.rs index ad5e49d2f..5e06b66b7 100644 --- a/pumpkin/src/block/pumpkin_block.rs +++ b/pumpkin/src/block/pumpkin_block.rs @@ -3,8 +3,8 @@ use crate::entity::player::Player; use crate::server::Server; use crate::world::{BlockFlags, World}; use async_trait::async_trait; -use pumpkin_data::block::{Block, BlockState}; use pumpkin_data::item::Item; +use pumpkin_data::{Block, BlockState}; use pumpkin_inventory::OpenContainer; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/block/registry.rs b/pumpkin/src/block/registry.rs index 830b7a979..477437fbf 100644 --- a/pumpkin/src/block/registry.rs +++ b/pumpkin/src/block/registry.rs @@ -2,9 +2,9 @@ use crate::block::pumpkin_block::{BlockMetadata, PumpkinBlock}; use crate::entity::player::Player; use crate::server::Server; use crate::world::{BlockFlags, World}; -use pumpkin_data::block::{Block, BlockState}; use pumpkin_data::fluid::Fluid; use pumpkin_data::item::Item; +use pumpkin_data::{Block, BlockState}; use pumpkin_inventory::OpenContainer; use pumpkin_protocol::server::play::SUseItemOn; use pumpkin_util::math::position::BlockPos; diff --git a/pumpkin/src/command/args/block.rs b/pumpkin/src/command/args/block.rs index 2931166f9..ddf13a6cf 100644 --- a/pumpkin/src/command/args/block.rs +++ b/pumpkin/src/command/args/block.rs @@ -1,5 +1,5 @@ use async_trait::async_trait; -use pumpkin_data::block::{Block, get_block}; +use pumpkin_data::{Block, block_properties::get_block}; use pumpkin_protocol::client::play::{ArgumentType, CommandSuggestion, SuggestionProviders}; use crate::{command::dispatcher::CommandError, server::Server}; diff --git a/pumpkin/src/command/commands/fill.rs b/pumpkin/src/command/commands/fill.rs index cc23efb56..cdedec38f 100644 --- a/pumpkin/src/command/commands/fill.rs +++ b/pumpkin/src/command/commands/fill.rs @@ -113,7 +113,7 @@ impl CommandExecutor for Executor { for z in start_z..=end_z { let block_position = BlockPos(Vector3 { x, y, z }); match world.get_block_state(&block_position).await { - Ok(old_state) if old_state.air => { + Ok(old_state) if old_state.is_air() => { world .set_block_state( &block_position, diff --git a/pumpkin/src/command/commands/setblock.rs b/pumpkin/src/command/commands/setblock.rs index 54f1ae64a..11df179ba 100644 --- a/pumpkin/src/command/commands/setblock.rs +++ b/pumpkin/src/command/commands/setblock.rs @@ -74,7 +74,7 @@ impl CommandExecutor for Executor { true } Mode::Keep => match world.get_block_state(&pos).await { - Ok(old_state) if old_state.air => { + Ok(old_state) if old_state.is_air() => { world .set_block_state( &pos, diff --git a/pumpkin/src/entity/item.rs b/pumpkin/src/entity/item.rs index ca812d908..ac28002ae 100644 --- a/pumpkin/src/entity/item.rs +++ b/pumpkin/src/entity/item.rs @@ -1,4 +1,7 @@ -use std::sync::{Arc, atomic::AtomicU32}; +use std::sync::{ + Arc, + atomic::{AtomicU32, Ordering::Relaxed}, +}; use async_trait::async_trait; use pumpkin_data::{damage::DamageType, item::Item}; @@ -43,6 +46,27 @@ impl ItemEntity { pickup_delay: Mutex::new(10), // Vanilla pickup delay is 10 ticks } } + + pub async fn new_with_velocity( + entity: Entity, + item_id: u16, + count: u32, + velocity: Vector3, + pickup_delay: u8, + ) -> Self { + entity.set_velocity(velocity).await; + entity.yaw.store(rand::random::() * 360.0); + Self { + entity, + item_stack: Mutex::new(ItemStack::new( + count as u8, + Item::from_id(item_id).expect("We passed a bad item id into ItemEntity"), + )), + item_age: AtomicU32::new(0), + pickup_delay: Mutex::new(pickup_delay), // Vanilla pickup delay is 10 ticks + } + } + pub async fn send_meta_packet(&self) { self.entity .send_meta_data(&[Metadata::new( @@ -57,19 +81,19 @@ impl ItemEntity { #[async_trait] impl EntityBase for ItemEntity { async fn tick(&self, server: &Server) { - self.entity.tick(server).await; + let entity = &self.entity; + entity.tick(server).await; { let mut delay = self.pickup_delay.lock().await; *delay = delay.saturating_sub(1); }; - let age = self - .item_age - .fetch_add(1, std::sync::atomic::Ordering::Relaxed); + let age = self.item_age.fetch_add(1, Relaxed); if age >= 6000 { - self.entity.remove().await; + entity.remove().await; } } + async fn damage(&self, _amount: f32, _damage_type: DamageType) -> bool { false } @@ -91,9 +115,7 @@ impl EntityBase for ItemEntity { while stack_size > 0 { if let Some(slot) = inv.get_pickup_item_slot(item_stack.item.id) { // Fill the inventory while there are items in the stack and space in the inventory - let maybe_stack = inv - .get_slot(slot) - .expect("collect item slot returned an invalid slot"); + let maybe_stack = inv.get_slot(slot).unwrap(); if let Some(existing_stack) = maybe_stack { // We have the item in this stack already diff --git a/pumpkin/src/entity/living.rs b/pumpkin/src/entity/living.rs index 3ac2ee35c..8119a9aaa 100644 --- a/pumpkin/src/entity/living.rs +++ b/pumpkin/src/entity/living.rs @@ -1,4 +1,4 @@ -use std::sync::atomic::AtomicU8; +use std::sync::atomic::{AtomicU8, Ordering::Relaxed}; use std::{collections::HashMap, sync::atomic::AtomicI32}; use super::EntityBase; @@ -7,7 +7,7 @@ use crate::server::Server; use async_trait::async_trait; use crossbeam::atomic::AtomicCell; use pumpkin_config::advanced_config; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::entity::{EffectType, EntityStatus}; use pumpkin_data::{damage::DamageType, sound::Sound}; use pumpkin_nbt::tag::NbtTag; @@ -169,9 +169,7 @@ impl LivingEntity { /// Returns if the entity was damaged or not pub fn check_damage(&self, amount: f32) -> bool { - let regen = self - .time_until_regen - .load(std::sync::atomic::Ordering::Relaxed); + let regen = self.time_until_regen.load(Relaxed); let last_damage = self.last_damage_taken.load(); // TODO: check if bypasses iframe @@ -180,8 +178,7 @@ impl LivingEntity { return false; } } else { - self.time_until_regen - .store(20, std::sync::atomic::Ordering::Relaxed); + self.time_until_regen.store(20, Relaxed); } self.last_damage_taken.store(amount); @@ -253,27 +250,33 @@ impl LivingEntity { ) .await; } + + fn tick_move(&self) { + let velo = self.entity.velocity.load(); + let pos = self.entity.pos.load(); + self.entity + .pos + .store(Vector3::new(pos.x + velo.x, pos.y + velo.y, pos.z + velo.z)); + let multiplier = f64::from(Entity::velocity_multiplier(pos)); + self.entity + .velocity + .store(velo.multiply(multiplier, 1.0, multiplier)); + } } #[async_trait] impl EntityBase for LivingEntity { async fn tick(&self, server: &Server) { self.entity.tick(server).await; + self.tick_move(); - if self - .time_until_regen - .load(std::sync::atomic::Ordering::Relaxed) - > 0 - { - self.time_until_regen - .fetch_sub(1, std::sync::atomic::Ordering::Relaxed); + if self.time_until_regen.load(Relaxed) > 0 { + self.time_until_regen.fetch_sub(1, Relaxed); } if self.health.load() <= 0.0 { let time = self .death_time .fetch_add(1, std::sync::atomic::Ordering::Relaxed); - - // Only remove entity and send remove packets once if time == 20 { // Spawn Death particles self.entity diff --git a/pumpkin/src/entity/mod.rs b/pumpkin/src/entity/mod.rs index a3fcc06c0..c401ef7c9 100644 --- a/pumpkin/src/entity/mod.rs +++ b/pumpkin/src/entity/mod.rs @@ -6,7 +6,7 @@ use crossbeam::atomic::AtomicCell; use living::LivingEntity; use player::Player; use pumpkin_data::{ - block::{Facing, HorizontalFacing}, + block_properties::{Facing, HorizontalFacing}, damage::DamageType, entity::{EntityPose, EntityType}, sound::{Sound, SoundCategory}, @@ -33,7 +33,10 @@ use std::{ f32::consts::PI, sync::{ Arc, - atomic::{AtomicBool, AtomicI32, Ordering}, + atomic::{ + AtomicBool, AtomicI32, + Ordering::{Relaxed, SeqCst}, + }, }, }; use tokio::sync::RwLock; @@ -147,7 +150,7 @@ impl Entity { }; Self { - entity_id: CURRENT_ID.fetch_add(1, std::sync::atomic::Ordering::Relaxed), + entity_id: CURRENT_ID.fetch_add(1, Relaxed), entity_uuid, entity_type, on_ground: AtomicBool::new(false), @@ -260,7 +263,7 @@ impl Entity { self.entity_id.into(), yaw as u8, pitch as u8, - self.on_ground.load(std::sync::atomic::Ordering::Relaxed), + self.on_ground.load(Relaxed), )) .await; self.world @@ -281,7 +284,7 @@ impl Entity { yaw, pitch, // TODO - self.on_ground.load(Ordering::SeqCst), + self.on_ground.load(SeqCst), )) .await; self.set_pos(position); @@ -339,7 +342,7 @@ impl Entity { let velocity = self.velocity.load(); self.velocity.store(Vector3::new( velocity.x / 2.0 - var8.x, - if self.on_ground.load(std::sync::atomic::Ordering::Relaxed) { + if self.on_ground.load(Relaxed) { (velocity.y / 2.0 + strength).min(0.4) } else { velocity.y @@ -349,9 +352,8 @@ impl Entity { } pub async fn set_sneaking(&self, sneaking: bool) { - assert!(self.sneaking.load(std::sync::atomic::Ordering::Relaxed) != sneaking); - self.sneaking - .store(sneaking, std::sync::atomic::Ordering::Relaxed); + assert!(self.sneaking.load(Relaxed) != sneaking); + self.sneaking.store(sneaking, Relaxed); self.set_flag(Flag::Sneaking, sneaking).await; if sneaking { self.set_pose(EntityPose::Crouching).await; @@ -407,20 +409,18 @@ impl Entity { } pub async fn set_sprinting(&self, sprinting: bool) { - assert!(self.sprinting.load(std::sync::atomic::Ordering::Relaxed) != sprinting); - self.sprinting - .store(sprinting, std::sync::atomic::Ordering::Relaxed); + assert!(self.sprinting.load(Relaxed) != sprinting); + self.sprinting.store(sprinting, Relaxed); self.set_flag(Flag::Sprinting, sprinting).await; } pub fn check_fall_flying(&self) -> bool { - !self.on_ground.load(std::sync::atomic::Ordering::Relaxed) + !self.on_ground.load(Relaxed) } pub async fn set_fall_flying(&self, fall_flying: bool) { - assert!(self.fall_flying.load(std::sync::atomic::Ordering::Relaxed) != fall_flying); - self.fall_flying - .store(fall_flying, std::sync::atomic::Ordering::Relaxed); + assert!(self.fall_flying.load(Relaxed) != fall_flying); + self.fall_flying.store(fall_flying, Relaxed); self.set_flag(Flag::FallFlying, fall_flying).await; } @@ -472,8 +472,7 @@ impl Entity { } pub fn is_invulnerable_to(&self, damage_type: &DamageType) -> bool { - self.invulnerable.load(std::sync::atomic::Ordering::Relaxed) - || self.damage_immunities.contains(damage_type) + self.invulnerable.load(Relaxed) || self.damage_immunities.contains(damage_type) } fn velocity_multiplier(_pos: Vector3) -> f32 { @@ -481,7 +480,7 @@ impl Entity { // TODO: handle when player is outside world // let block = world.get_block(&self.block_pos.load()).await; // block.velocity_multiplier - 0.0 + 1.0 // if velo_multiplier == 1.0 { // const VELOCITY_OFFSET: f64 = 0.500001; // Vanilla // let pos_with_y_offset = BlockPos(Vector3::new( @@ -494,16 +493,6 @@ impl Entity { // } else { // } } - - fn tick_move(&self) { - let velo = self.velocity.load(); - let pos = self.pos.load(); - self.pos - .store(Vector3::new(pos.x + velo.x, pos.y + velo.y, pos.z + velo.z)); - let multiplier = f64::from(Self::velocity_multiplier(pos)); - self.velocity - .store(velo.multiply(multiplier, 1.0, multiplier)); - } } #[async_trait] @@ -513,7 +502,7 @@ impl EntityBase for Entity { } async fn tick(&self, _: &Server) { - self.tick_move(); + //Todo! Tick } fn get_entity(&self) -> &Entity { @@ -546,7 +535,7 @@ impl NBTStorage for Entity { "Rotation", NbtTag::List(vec![self.yaw.load().into(), self.pitch.load().into()].into_boxed_slice()), ); - nbt.put_bool("OnGround", self.on_ground.load(Ordering::Relaxed)); + nbt.put_bool("OnGround", self.on_ground.load(Relaxed)); // todo more... } @@ -568,7 +557,7 @@ impl NBTStorage for Entity { self.set_rotation(yaw, pitch); self.head_yaw.store(yaw); self.on_ground - .store(nbt.get_bool("OnGround").unwrap_or(false), Ordering::Relaxed); + .store(nbt.get_bool("OnGround").unwrap_or(false), Relaxed); // todo more... } } diff --git a/pumpkin/src/entity/player.rs b/pumpkin/src/entity/player.rs index fc20129ae..8e22e4f7f 100644 --- a/pumpkin/src/entity/player.rs +++ b/pumpkin/src/entity/player.rs @@ -1,10 +1,14 @@ use std::{ collections::VecDeque, + f64::{self, consts::TAU}, num::NonZeroU8, ops::AddAssign, sync::{ Arc, - atomic::{AtomicBool, AtomicI32, AtomicI64, AtomicU8, AtomicU32, Ordering}, + atomic::{ + AtomicBool, AtomicI32, AtomicI64, AtomicU8, AtomicU32, + Ordering::{self, Relaxed}, + }, }, time::{Duration, Instant}, }; @@ -34,7 +38,7 @@ use async_trait::async_trait; use crossbeam::atomic::AtomicCell; use pumpkin_config::{BASIC_CONFIG, advanced_config}; use pumpkin_data::{ - block::BlockState, + BlockState, damage::DamageType, entity::{EffectType, EntityStatus, EntityType}, item::Operation, @@ -424,8 +428,7 @@ impl Player { let attack_speed = base_attack_speed + add_speed; let attack_cooldown_progress = self.get_attack_cooldown_progress(0.5, attack_speed); - self.last_attacked_ticks - .store(0, std::sync::atomic::Ordering::Relaxed); + self.last_attacked_ticks.store(0, Relaxed); // Only reduce attack damage if in cooldown // TODO: Enchantments are reduced in the same way, just without the square. @@ -545,17 +548,13 @@ impl Player { } pub async fn tick(&self, server: &Server) { - if self - .client - .closed - .load(std::sync::atomic::Ordering::Relaxed) - { + if self.client.closed.load(Relaxed) { return; } - if self.packet_sequence.load(Ordering::Relaxed) > -1 { + if self.packet_sequence.load(Relaxed) > -1 { self.client .enqueue_packet(&CAcknowledgeBlockChange::new( - self.packet_sequence.swap(-1, Ordering::Relaxed).into(), + self.packet_sequence.swap(-1, Relaxed).into(), )) .await; } @@ -587,35 +586,33 @@ impl Player { .await; } - self.tick_counter.fetch_add(1, Ordering::Relaxed); + self.tick_counter.fetch_add(1, Relaxed); - if self.mining.load(Ordering::Relaxed) { + if self.mining.load(Relaxed) { let pos = self.mining_pos.lock().await; let world = self.world().await; let block = world.get_block(&pos).await.unwrap(); let state = world.get_block_state(&pos).await.unwrap(); // Is the block broken? - if state.air { + if state.is_air() { world .set_block_breaking(&self.living_entity.entity, *pos, -1) .await; - self.current_block_destroy_stage - .store(-1, Ordering::Relaxed); - self.mining.store(false, Ordering::Relaxed); + self.current_block_destroy_stage.store(-1, Relaxed); + self.mining.store(false, Relaxed); } else { self.continue_mining( *pos, &world, &state, block.name, - self.start_mining_time.load(Ordering::Relaxed), + self.start_mining_time.load(Relaxed), ) .await; } } - self.last_attacked_ticks - .fetch_add(1, std::sync::atomic::Ordering::Relaxed); + self.last_attacked_ticks.fetch_add(1, Relaxed); self.living_entity.tick(server).await; self.hunger_manager.tick(self).await; @@ -630,20 +627,15 @@ impl Player { let now = Instant::now(); if now.duration_since(self.last_keep_alive_time.load()) >= Duration::from_secs(15) { // We never got a response from the last keep alive we sent. - if self - .wait_for_keep_alive - .load(std::sync::atomic::Ordering::Relaxed) - { + if self.wait_for_keep_alive.load(Relaxed) { self.kick(TextComponent::translate("disconnect.timeout", [])) .await; return; } - self.wait_for_keep_alive - .store(true, std::sync::atomic::Ordering::Relaxed); + self.wait_for_keep_alive.store(true, Relaxed); self.last_keep_alive_time.store(now); let id = now.elapsed().as_millis() as i64; - self.keep_alive_id - .store(id, std::sync::atomic::Ordering::Relaxed); + self.keep_alive_id.store(id, Relaxed); self.client.enqueue_packet(&CKeepAlive::new(id)).await; } } @@ -656,20 +648,19 @@ impl Player { block_name: &str, starting_time: i32, ) { - let time = self.tick_counter.load(Ordering::Relaxed) - starting_time; + let time = self.tick_counter.load(Relaxed) - starting_time; let speed = block::calc_block_breaking(self, state, block_name).await * (time + 1) as f32; let progress = (speed * 10.0) as i32; - if progress != self.current_block_destroy_stage.load(Ordering::Relaxed) { + if progress != self.current_block_destroy_stage.load(Relaxed) { world .set_block_breaking(&self.living_entity.entity, location, progress) .await; - self.current_block_destroy_stage - .store(progress, Ordering::Relaxed); + self.current_block_destroy_stage.store(progress, Relaxed); } } pub async fn jump(&self) { - if self.living_entity.entity.sprinting.load(Ordering::Relaxed) { + if self.living_entity.entity.sprinting.load(Relaxed) { self.add_exhaustion(0.2).await; } else { self.add_exhaustion(0.05).await; @@ -679,10 +670,10 @@ impl Player { #[expect(clippy::cast_precision_loss)] pub async fn progress_motion(&self, delta_pos: Vector3) { // TODO: Swimming, gliding... - if self.living_entity.entity.on_ground.load(Ordering::Relaxed) { + if self.living_entity.entity.on_ground.load(Relaxed) { let delta = (delta_pos.horizontal_length() * 100.0).round() as i32; if delta > 0 { - if self.living_entity.entity.sprinting.load(Ordering::Relaxed) { + if self.living_entity.entity.sprinting.load(Relaxed) { self.add_exhaustion(0.1 * delta as f32 * 0.01).await; } else { self.add_exhaustion(0.0 * delta as f32 * 0.01).await; @@ -692,15 +683,14 @@ impl Player { } pub fn has_client_loaded(&self) -> bool { - self.client_loaded.load(Ordering::Relaxed) - || self.client_loaded_timeout.load(Ordering::Relaxed) == 0 + self.client_loaded.load(Relaxed) || self.client_loaded_timeout.load(Relaxed) == 0 } pub fn set_client_loaded(&self, loaded: bool) { if !loaded { - self.client_loaded_timeout.store(60, Ordering::Relaxed); + self.client_loaded_timeout.store(60, Relaxed); } - self.client_loaded.store(loaded, Ordering::Relaxed); + self.client_loaded.store(loaded, Relaxed); } pub fn get_attack_cooldown_progress(&self, base_time: f64, attack_speed: f64) -> f64 { @@ -923,7 +913,7 @@ impl Player { let position = event.to; let i = self .teleport_id_count - .fetch_add(1, std::sync::atomic::Ordering::Relaxed); + .fetch_add(1, Relaxed); let teleport_id = i + 1; self.living_entity.set_pos(position); let entity = &self.living_entity.entity; @@ -996,11 +986,7 @@ impl Player { /// Kicks the player with a reason depending on the connection state. pub async fn kick(&self, reason: TextComponent) { - if self - .client - .closed - .load(std::sync::atomic::Ordering::Relaxed) - { + if self.client.closed.load(Relaxed) { log::debug!( "Tried to kick client id {} but connection is closed!", self.client.id @@ -1056,15 +1042,14 @@ impl Player { let food = self.hunger_manager.level.load(); let saturation = self.hunger_manager.saturation.load(); - let last_health = self.last_sent_health.load(Ordering::Relaxed); - let last_food = self.last_sent_food.load(Ordering::Relaxed); - let last_saturation = self.last_food_saturation.load(Ordering::Relaxed); + let last_health = self.last_sent_health.load(Relaxed); + let last_food = self.last_sent_food.load(Relaxed); + let last_saturation = self.last_food_saturation.load(Relaxed); if health != last_health || food != last_food || (saturation == 0.0) != last_saturation { - self.last_sent_health.store(health, Ordering::Relaxed); - self.last_sent_food.store(food, Ordering::Relaxed); - self.last_food_saturation - .store(saturation == 0.0, Ordering::Relaxed); + self.last_sent_health.store(health, Relaxed); + self.last_sent_food.store(food, Relaxed); + self.last_food_saturation.store(saturation == 0.0, Relaxed); self.send_health().await; } } @@ -1075,10 +1060,10 @@ impl Player { } pub fn tick_client_load_timeout(&self) { - if !self.client_loaded.load(Ordering::Relaxed) { - let timeout = self.client_loaded_timeout.load(Ordering::Relaxed); + if !self.client_loaded.load(Relaxed) { + let timeout = self.client_loaded_timeout.load(Relaxed); self.client_loaded_timeout - .store(timeout.saturating_sub(1), Ordering::Relaxed); + .store(timeout.saturating_sub(1), Relaxed); } } @@ -1127,7 +1112,7 @@ impl Player { self.living_entity.entity.invulnerable.store( matches!(gamemode, GameMode::Creative | GameMode::Spectator), - std::sync::atomic::Ordering::Relaxed, + Relaxed, ); self.living_entity .entity @@ -1173,7 +1158,7 @@ impl Player { } pub async fn can_harvest(&self, block: &BlockState, block_name: &str) -> bool { - !block.tool_required + !block.tool_required() || self .inventory .lock() @@ -1213,7 +1198,7 @@ impl Player { speed *= fatigue_speed; } // TODO: Handle when in water - if !self.living_entity.entity.on_ground.load(Ordering::Relaxed) { + if !self.living_entity.entity.on_ground.load(Relaxed) { speed /= 5.0; } speed @@ -1253,13 +1238,30 @@ impl Player { } pub async fn drop_item(&self, item_id: u16, count: u32) { - let entity = self - .world() - .await - .create_entity(self.living_entity.entity.pos.load(), EntityType::ITEM); + let entity = self.world().await.create_entity( + self.living_entity.entity.pos.load() + + Vector3::new(0.0, f64::from(EntityType::PLAYER.eye_height) - 0.3, 0.0), + EntityType::ITEM, + ); + + let pitch = f64::from(self.living_entity.entity.pitch.load()).to_radians(); + let yaw = f64::from(self.living_entity.entity.yaw.load()).to_radians(); + let pitch_sin = pitch.sin(); + let pitch_cos = pitch.cos(); + let yaw_sin = yaw.sin(); + let yaw_cos = yaw.cos(); + let horizontal_offset = rand::random::() * TAU; + let l = 0.02 * rand::random::(); + + let velocity = Vector3::new( + -yaw_sin * pitch_cos * 0.3 + horizontal_offset.cos() * l, + -pitch_sin * 0.3 + 0.1 + (rand::random::() - rand::random::()) * 0.1, + yaw_cos * pitch_cos * 0.3 + horizontal_offset.sin() * l, + ); // TODO: Merge stacks together - let item_entity = Arc::new(ItemEntity::new(entity, item_id, count).await); + let item_entity = + Arc::new(ItemEntity::new_with_velocity(entity, item_id, count, velocity, 40).await); self.world().await.spawn_entity(item_entity.clone()).await; item_entity.send_meta_packet().await; } @@ -1285,12 +1287,12 @@ impl Player { } pub async fn tick_experience(&self) { - let level = self.experience_level.load(Ordering::Relaxed); - if self.last_sent_xp.load(Ordering::Relaxed) != level { + let level = self.experience_level.load(Relaxed); + if self.last_sent_xp.load(Relaxed) != level { let progress = self.experience_progress.load(); - let points = self.experience_points.load(Ordering::Relaxed); + let points = self.experience_points.load(Relaxed); - self.last_sent_xp.store(level, Ordering::Relaxed); + self.last_sent_xp.store(level, Relaxed); self.client .send_packet_now(&CSetExperience::new( @@ -1305,10 +1307,10 @@ impl Player { /// Sets the player's experience level and notifies the client. pub async fn set_experience(&self, level: i32, progress: f32, points: i32) { // TODO: These should be atomic together, not isolated; make a struct containing these. can cause ABA issues - self.experience_level.store(level, Ordering::Relaxed); + self.experience_level.store(level, Relaxed); self.experience_progress.store(progress.clamp(0.0, 1.0)); - self.experience_points.store(points, Ordering::Relaxed); - self.last_sent_xp.store(-1, Ordering::Relaxed); + self.experience_points.store(points, Relaxed); + self.last_sent_xp.store(-1, Relaxed); self.tick_experience().await; self.client @@ -1323,12 +1325,12 @@ impl Player { /// Sets the player's experience level directly. pub async fn set_experience_level(&self, new_level: i32, keep_progress: bool) { let progress = self.experience_progress.load(); - let mut points = self.experience_points.load(Ordering::Relaxed); + let mut points = self.experience_points.load(Relaxed); // If `keep_progress` is `true` then calculate the number of points needed to keep the same progress scaled. if keep_progress { // Get our current level - let current_level = self.experience_level.load(Ordering::Relaxed); + let current_level = self.experience_level.load(Relaxed); let current_max_points = experience::points_in_level(current_level); // Calculate the max value for the new level let new_max_points = experience::points_in_level(new_level); @@ -1407,20 +1409,20 @@ impl Player { /// Add experience levels to the player. pub async fn add_experience_levels(&self, added_levels: i32) { - let current_level = self.experience_level.load(Ordering::Relaxed); + let current_level = self.experience_level.load(Relaxed); let new_level = current_level + added_levels; self.set_experience_level(new_level, true).await; } /// Set the player's experience points directly. Returns `true` if successful. pub async fn set_experience_points(&self, new_points: i32) -> bool { - let current_points = self.experience_points.load(Ordering::Relaxed); + let current_points = self.experience_points.load(Relaxed); if new_points == current_points { return true; } - let current_level = self.experience_level.load(Ordering::Relaxed); + let current_level = self.experience_level.load(Relaxed); let max_points = experience::points_in_level(current_level); if new_points < 0 || new_points > max_points { @@ -1435,8 +1437,8 @@ impl Player { /// Add experience points to the player. pub async fn add_experience_points(&self, added_points: i32) { - let current_level = self.experience_level.load(Ordering::Relaxed); - let current_points = self.experience_points.load(Ordering::Relaxed); + let current_level = self.experience_level.load(Relaxed); + let current_points = self.experience_points.load(Relaxed); let total_exp = experience::points_to_level(current_level) + current_points; let new_total_exp = total_exp + added_points; let (new_level, new_points) = experience::total_to_level_and_points(new_total_exp); @@ -1464,18 +1466,15 @@ impl NBTStorage for Player { self.abilities.lock().await.write_nbt(nbt).await; // Store total XP instead of individual components - let total_exp = experience::points_to_level(self.experience_level.load(Ordering::Relaxed)) - + self.experience_points.load(Ordering::Relaxed); + let total_exp = experience::points_to_level(self.experience_level.load(Relaxed)) + + self.experience_points.load(Relaxed); nbt.put_int("XpTotal", total_exp); nbt.put_byte("playerGameType", self.gamemode.load() as i8); if let Some(previous_gamemode) = self.previous_gamemode.load() { nbt.put_byte("previousPlayerGameType", previous_gamemode as i8); } - nbt.put_bool( - "HasPlayedBefore", - self.has_played_before.load(Ordering::Relaxed), - ); + nbt.put_bool("HasPlayedBefore", self.has_played_before.load(Relaxed)); // Store food level, saturation, exhaustion, and tick timer self.hunger_manager.write_nbt(nbt).await; @@ -1496,10 +1495,8 @@ impl NBTStorage for Player { .and_then(|byte| GameMode::try_from(byte).ok()), ); - self.has_played_before.store( - nbt.get_bool("HasPlayedBefore").unwrap_or(false), - Ordering::Relaxed, - ); + self.has_played_before + .store(nbt.get_bool("HasPlayedBefore").unwrap_or(false), Relaxed); // Load food level, saturation, exhaustion, and tick timer self.hunger_manager.read_nbt(nbt).await; @@ -1508,9 +1505,9 @@ impl NBTStorage for Player { let total_exp = nbt.get_int("XpTotal").unwrap_or(0); let (level, points) = experience::total_to_level_and_points(total_exp); let progress = experience::progress_in_level(level, points); - self.experience_level.store(level, Ordering::Relaxed); + self.experience_level.store(level, Relaxed); self.experience_progress.store(progress); - self.experience_points.store(points, Ordering::Relaxed); + self.experience_points.store(points, Relaxed); } } diff --git a/pumpkin/src/entity/tnt.rs b/pumpkin/src/entity/tnt.rs index a8d73104c..0806ed495 100644 --- a/pumpkin/src/entity/tnt.rs +++ b/pumpkin/src/entity/tnt.rs @@ -1,12 +1,15 @@ use crate::server::Server; use async_trait::async_trait; -use pumpkin_data::{block::Block, damage::DamageType}; +use pumpkin_data::{Block, damage::DamageType}; use pumpkin_protocol::{ client::play::{MetaDataType, Metadata}, codec::var_int::VarInt, }; use pumpkin_util::math::vector3::Vector3; -use std::sync::atomic::AtomicU32; +use std::{ + f64::consts::TAU, + sync::atomic::{AtomicU32, Ordering::Relaxed}, +}; use super::{Entity, EntityBase, living::LivingEntity}; @@ -26,7 +29,8 @@ impl TNTEntity { } pub async fn send_meta_packet(&self) { // TODO: Yes, this is the wrong function, but we need to send this after spawning the entity. - let pos: f64 = rand::random::() * 6.283_185_482_025_146_5; + let pos: f64 = rand::random::() * TAU; + self.entity .set_velocity(Vector3::new(-pos.sin() * 0.02, 0.2, -pos.cos() * 0.02)) .await; @@ -36,7 +40,7 @@ impl TNTEntity { Metadata::new( 8, MetaDataType::Integer, - VarInt(self.fuse.load(std::sync::atomic::Ordering::Relaxed) as i32), + VarInt(self.fuse.load(Relaxed) as i32), ), Metadata::new( 9, @@ -51,7 +55,7 @@ impl TNTEntity { #[async_trait] impl EntityBase for TNTEntity { async fn tick(&self, server: &Server) { - let fuse = self.fuse.fetch_sub(1, std::sync::atomic::Ordering::Relaxed); + let fuse = self.fuse.fetch_sub(1, Relaxed); if fuse == 0 { self.entity.remove().await; self.entity diff --git a/pumpkin/src/item/items/hoe.rs b/pumpkin/src/item/items/hoe.rs index 7a39bf5e1..f35a5e1b3 100644 --- a/pumpkin/src/item/items/hoe.rs +++ b/pumpkin/src/item/items/hoe.rs @@ -4,7 +4,7 @@ use crate::item::pumpkin_item::{ItemMetadata, PumpkinItem}; use crate::server::Server; use crate::world::BlockFlags; use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::entity::EntityType; use pumpkin_data::item::Item; use pumpkin_data::tag::Tagable; @@ -60,7 +60,11 @@ impl PumpkinItem for HoeItem { if (block == &Block::GRASS_BLOCK || block == &Block::DIRT_PATH || block == &Block::DIRT) - && world.get_block_state(&location.up()).await.unwrap().air + && world + .get_block_state(&location.up()) + .await + .unwrap() + .is_air() { future_block = &Block::FARMLAND; } diff --git a/pumpkin/src/item/pumpkin_item.rs b/pumpkin/src/item/pumpkin_item.rs index 351dcbcd1..a8f890c4e 100644 --- a/pumpkin/src/item/pumpkin_item.rs +++ b/pumpkin/src/item/pumpkin_item.rs @@ -1,7 +1,7 @@ use crate::entity::player::Player; use crate::server::Server; use async_trait::async_trait; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::item::Item; use pumpkin_util::math::position::BlockPos; use pumpkin_world::block::BlockDirection; diff --git a/pumpkin/src/item/registry.rs b/pumpkin/src/item/registry.rs index aab5cfe2e..e1fe0c0ba 100644 --- a/pumpkin/src/item/registry.rs +++ b/pumpkin/src/item/registry.rs @@ -1,6 +1,6 @@ use crate::entity::player::Player; use crate::server::Server; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_data::item::Item; use pumpkin_util::math::position::BlockPos; use pumpkin_world::block::BlockDirection; diff --git a/pumpkin/src/net/packet/play.rs b/pumpkin/src/net/packet/play.rs index 70964b4e2..c08855d30 100644 --- a/pumpkin/src/net/packet/play.rs +++ b/pumpkin/src/net/packet/play.rs @@ -25,11 +25,14 @@ use crate::{ world::chunker, }; use pumpkin_config::{BASIC_CONFIG, advanced_config}; -use pumpkin_data::block::{Block, get_block_by_item, get_block_collision_shapes}; use pumpkin_data::entity::{EntityType, entity_from_egg}; use pumpkin_data::item::Item; use pumpkin_data::sound::Sound; use pumpkin_data::sound::SoundCategory; +use pumpkin_data::{ + Block, + block_properties::{get_block_by_item, get_block_collision_shapes}, +}; use pumpkin_inventory::InventoryError; use pumpkin_inventory::player::{ PlayerInventory, SLOT_HOTBAR_END, SLOT_HOTBAR_START, SLOT_OFFHAND, @@ -57,7 +60,6 @@ use pumpkin_protocol::{ SSetPlayerGround, SSwingArm, SUseItem, SUseItemOn, Status, }, }; -use pumpkin_util::math::boundingbox::BoundingBox; use pumpkin_util::math::polynomial_rolling_hash; use pumpkin_util::math::position::BlockPos; use pumpkin_util::text::color::NamedColor; @@ -1204,7 +1206,7 @@ impl Player { self.tick_counter.load(std::sync::atomic::Ordering::Relaxed), std::sync::atomic::Ordering::Relaxed, ); - if !state.air { + if !state.is_air() { let speed = block::calc_block_breaking(self, &state, block.name).await; // Instant break if speed >= 1.0 { @@ -1697,8 +1699,9 @@ impl Player { //let previous_block = world.get_block(&block_pos).await?; let previous_block_state = world.get_block_state(&block_pos).await?; - if !previous_block_state.replaceable && !updateable { - return Ok(true); + if !previous_block_state.replaceable() && !updateable { + //no decrement if the block is not replaceable + return Ok(false); } (block_pos, &face.opposite()) @@ -1714,21 +1717,19 @@ impl Player { &final_block_pos, &use_item_on, self, - !(clicked_block_state.replaceable || updateable), + !(clicked_block_state.replaceable() || updateable), ) .await; // At this point, we must have the new block state. let shapes = get_block_collision_shapes(new_state).unwrap_or_default(); let mut intersects = false; - for player in world.get_nearby_players(location.0.to_f64(), 3.0).await { + 'main: for player in world.get_nearby_players(location.0.to_f64(), 3.0).await { let player_box = player.1.living_entity.entity.bounding_box.load(); for shape in &shapes { - let block_box = BoundingBox::from_block_raw(&final_block_pos) - .offset(BoundingBox::new_array(shape.min, shape.max)); - if player_box.intersects(&block_box) { + if shape.at_pos(final_block_pos).intersects(&player_box) { intersects = true; - break; + break 'main; } } } diff --git a/pumpkin/src/plugin/api/events/block/block_break.rs b/pumpkin/src/plugin/api/events/block/block_break.rs index 847dc52e8..e621c4976 100644 --- a/pumpkin/src/plugin/api/events/block/block_break.rs +++ b/pumpkin/src/plugin/api/events/block/block_break.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::{Event, cancellable}; use pumpkin_util::math::position::BlockPos; use std::sync::Arc; diff --git a/pumpkin/src/plugin/api/events/block/block_burn.rs b/pumpkin/src/plugin/api/events/block/block_burn.rs index 746487dca..e6926e629 100644 --- a/pumpkin/src/plugin/api/events/block/block_burn.rs +++ b/pumpkin/src/plugin/api/events/block/block_burn.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::{Event, cancellable}; use super::BlockEvent; diff --git a/pumpkin/src/plugin/api/events/block/block_can_build.rs b/pumpkin/src/plugin/api/events/block/block_can_build.rs index f31bf7483..4eb551b52 100644 --- a/pumpkin/src/plugin/api/events/block/block_can_build.rs +++ b/pumpkin/src/plugin/api/events/block/block_can_build.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::{Event, cancellable}; use std::sync::Arc; diff --git a/pumpkin/src/plugin/api/events/block/block_place.rs b/pumpkin/src/plugin/api/events/block/block_place.rs index e2d6ab44f..1beaa500b 100644 --- a/pumpkin/src/plugin/api/events/block/block_place.rs +++ b/pumpkin/src/plugin/api/events/block/block_place.rs @@ -1,4 +1,4 @@ -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_macros::{Event, cancellable}; use std::sync::Arc; diff --git a/pumpkin/src/plugin/api/events/block/mod.rs b/pumpkin/src/plugin/api/events/block/mod.rs index 8f266bd0e..675ad94f3 100644 --- a/pumpkin/src/plugin/api/events/block/mod.rs +++ b/pumpkin/src/plugin/api/events/block/mod.rs @@ -3,7 +3,7 @@ pub mod block_burn; pub mod block_can_build; pub mod block_place; -use pumpkin_data::block::Block; +use pumpkin_data::Block; /// A trait representing events related to blocks. /// diff --git a/pumpkin/src/server/mod.rs b/pumpkin/src/server/mod.rs index a80b54737..7c72e7909 100644 --- a/pumpkin/src/server/mod.rs +++ b/pumpkin/src/server/mod.rs @@ -15,7 +15,7 @@ use bytes::Bytes; use connection_cache::{CachedBranding, CachedStatus}; use key_store::KeyStore; use pumpkin_config::{BASIC_CONFIG, advanced_config}; -use pumpkin_data::block::Block; +use pumpkin_data::Block; use pumpkin_inventory::drag_handler::DragHandler; use pumpkin_inventory::{Container, OpenContainer}; use pumpkin_macros::send_cancellable; diff --git a/pumpkin/src/world/explosion.rs b/pumpkin/src/world/explosion.rs index fbed8f03b..ac4cb9f73 100644 --- a/pumpkin/src/world/explosion.rs +++ b/pumpkin/src/world/explosion.rs @@ -50,7 +50,7 @@ impl Explosion { // } // TODO: This should only check air & fluid - if !state.air { + if !state.is_air() { h -= (block.blast_resistance + 0.3) * 0.3; } if h > 0.0 { @@ -74,7 +74,7 @@ impl Explosion { for pos in blocks { let block_state = world.get_block_state(&pos).await.unwrap(); - if block_state.air { + if block_state.is_air() { continue; } diff --git a/pumpkin/src/world/mod.rs b/pumpkin/src/world/mod.rs index dcfc60903..b302f10f5 100644 --- a/pumpkin/src/world/mod.rs +++ b/pumpkin/src/world/mod.rs @@ -27,7 +27,10 @@ use bytes::{BufMut, Bytes}; use explosion::Explosion; use pumpkin_config::BasicConfiguration; use pumpkin_data::{ - block::{Block, get_block_and_state_by_state_id, get_block_by_state_id, get_state_by_state_id}, + Block, + block_properties::{ + get_block_and_state_by_state_id, get_block_by_state_id, get_state_by_state_id, + }, entity::{EntityStatus, EntityType}, fluid::Fluid, particle::Particle, @@ -478,7 +481,7 @@ impl World { let pos = BlockPos(Vector3::new(position.x, y, position.z)); let block = self.get_block_state(&pos).await; if let Ok(block) = block { - if block.air { + if block.is_air() { continue; } } @@ -1532,7 +1535,7 @@ impl World { pub async fn get_block( &self, position: &BlockPos, - ) -> Result { + ) -> Result { let id = self.get_block_state_id(position).await?; get_block_by_state_id(id).ok_or(GetBlockError::InvalidBlockId) } @@ -1549,15 +1552,12 @@ impl World { pub async fn get_block_state( &self, position: &BlockPos, - ) -> Result { + ) -> Result { let id = self.get_block_state_id(position).await?; get_state_by_state_id(id).ok_or(GetBlockError::InvalidBlockId) } - pub fn get_state_by_id( - &self, - id: u16, - ) -> Result { + pub fn get_state_by_id(&self, id: u16) -> Result { get_state_by_state_id(id).ok_or(GetBlockError::InvalidBlockId) } @@ -1565,7 +1565,7 @@ impl World { pub async fn get_block_and_block_state( &self, position: &BlockPos, - ) -> Result<(pumpkin_data::block::Block, pumpkin_data::block::BlockState), GetBlockError> { + ) -> Result<(pumpkin_data::Block, pumpkin_data::BlockState), GetBlockError> { let id = self.get_block_state_id(position).await?; get_block_and_state_by_state_id(id).ok_or(GetBlockError::InvalidBlockId) }